diff options
author | Wilson Ccasihue S <wilson2cs@gmail.com> | 2019-12-01 21:30:29 -0500 |
---|---|---|
committer | hel0 <wilson2cs@gmail.com> | 2019-12-02 12:06:35 -0500 |
commit | e7ad4a2f8c07a82d6424b473f0d51dbd8f897b10 (patch) | |
tree | 4fe44d456c9674db39692c30493dd5e1d410cb7a /src/wallet | |
parent | 19698ac6bc0e6c75a92b02c8b74ae1fa51c34e08 (diff) |
doc: rename wallet-tool references to bitcoin-wallet
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 647b381b39..0a8ce7caf1 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -822,7 +822,7 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn, bool fFlushOnClose) 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<int> block_height = locked_chain->getBlockHeight(wtxIn.m_confirm.hashBlock); @@ -2944,7 +2944,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); |