diff --git a/src/bitcoin-wallet.cpp b/src/bitcoin-wallet.cpp --- a/src/bitcoin-wallet.cpp +++ b/src/bitcoin-wallet.cpp @@ -57,10 +57,10 @@ std::string usage = strprintf("%s bitcoin-wallet version", PACKAGE_NAME) + " " + FormatFullVersion() + "\n\n" + - "wallet-tool is an offline tool for creating and interacting with " - "Bitcoin ABC wallet files.\n" + - "By default wallet-tool will act on wallets in the default mainnet " - "wallet directory in the datadir.\n" + + "bitcoin-wallet is an offline tool for creating and interacting " + "with Bitcoin ABC wallet files.\n" + + "By default bitcoin-wallet will act on wallets in the default " + "mainnet wallet directory in the datadir.\n" + "To change the target wallet, use the -datadir, -wallet and " "-testnet/-regtest arguments.\n\n" + "Usage:\n" + " bitcoin-wallet [options] \n\n" + diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -883,7 +883,7 @@ } void CWallet::LoadToWallet(CWalletTx &wtxIn) { - // If wallet doesn't have a chain (e.g wallet-tool), lock can't be taken. + // If wallet doesn't have a chain (e.g bitcoin-wallet), lock can't be taken. auto locked_chain = LockChain(); if (locked_chain) { Optional block_height = @@ -3282,7 +3282,7 @@ DBErrors CWallet::LoadWallet(bool &fFirstRunRet) { // Even if we don't use this lock in this function, we want to preserve // lock order in LoadToWallet if query of chain state is needed to know - // tx status. If lock can't be taken (e.g wallet-tool), tx confirmation + // tx status. If lock can't be taken (e.g bitcoin-wallet), tx confirmation // status may be not reliable. auto locked_chain = LockChain(); LOCK(cs_wallet);