aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorSamuel Dobson <dobsonsa68@gmail.com>2021-10-12 14:36:51 +1300
committerSamuel Dobson <dobsonsa68@gmail.com>2021-10-12 14:36:51 +1300
commita0efe529e4fd053b890450413b9ca5e1bcd8f2c2 (patch)
tree79411554469949d6d3d988420d13e3bb986bba40 /src/wallet/wallet.cpp
parente418a8e675e4dbca9f9c3cf7dd4633aa3c6c196e (diff)
downloadbitcoin-a0efe529e4fd053b890450413b9ca5e1bcd8f2c2.tar.xz
Fix outdated comments referring to ::ChainActive()
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index abfe9d7dba..180d9d652a 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -1294,7 +1294,7 @@ void CWallet::updatedBlockTip()
void CWallet::BlockUntilSyncedToCurrentChain() const {
AssertLockNotHeld(cs_wallet);
// Skip the queue-draining stuff if we know we're caught up with
- // ::ChainActive().Tip(), otherwise put a callback in the validation interface queue and wait
+ // chain().Tip(), otherwise put a callback in the validation interface queue and wait
// for the queue to drain enough to execute it (indicating we are caught up
// at least with the time we entered this function).
uint256 last_block_hash = WITH_LOCK(cs_wallet, return m_last_block_processed);