Skip to content

Commit

Permalink
Fix functional/tool_wallet.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
janus committed May 5, 2024
1 parent f80e2f6 commit db07eb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/wallet/wallettool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ bool ExecuteWalletToolFunc(const ArgsManager& args, const std::string& command)
tfm::format(std::cerr, "%s\n", error.original);
return ret;
}
tfm::format(std::cout, "The dumpfile may contain private keys. To ensure the safety of your BGL, do not share the dumpfile.\n");
tfm::format(std::cout, "The dumpfile may contain private keys. To ensure the safety of your Bitgesell, do not share the dumpfile.\n");
return ret;
} else if (command == "createfromdump") {
bilingual_str error;
Expand Down
2 changes: 1 addition & 1 deletion test/functional/tool_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def do_tool_createfromdump(self, wallet_name, dumpfile, file_format=None):
self.assert_tool_output(load_output, *args)
assert (self.nodes[0].wallets_path / wallet_name).is_dir()

self.assert_tool_output("The dumpfile may contain private keys. To ensure the safety of your BGL, do not share the dumpfile.\n", '-wallet={}'.format(wallet_name), '-dumpfile={}'.format(rt_dumppath), 'dump')
self.assert_tool_output("The dumpfile may contain private keys. To ensure the safety of your Bitgesell, do not share the dumpfile.\n", '-wallet={}'.format(wallet_name), '-dumpfile={}'.format(rt_dumppath), 'dump')

rt_dump_data = self.read_dump(rt_dumppath)
wallet_dat = self.nodes[0].wallets_path / wallet_name / "wallet.dat"
Expand Down

0 comments on commit db07eb0

Please sign in to comment.