aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristaps Kaupe <kristaps@blogiem.lv>2022-02-18 07:30:05 +0200
committerKristaps Kaupe <kristaps@blogiem.lv>2022-02-18 07:30:05 +0200
commit62cc138ecb9cc7afcbe6fdb42b060a8f149826de (patch)
tree2bf892a22fd3445d3c038bf8f05b6f782ab48101 /src
parent0db3ad3ba41a76dff80bcb5f292e587da400ebf1 (diff)
downloadbitcoin-62cc138ecb9cc7afcbe6fdb42b060a8f149826de.tar.xz
Rename wallet-tool to bitcoin-wallet in code comment
Diffstat (limited to 'src')
-rw-r--r--src/wallet/wallet.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 7e694d1987..6549a2146b 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -1027,7 +1027,8 @@ bool CWallet::LoadToWallet(const uint256& hash, const UpdateWalletTxFn& fill_wtx
if (!fill_wtx(wtx, ins.second)) {
return false;
}
- // If wallet doesn't have a chain (e.g wallet-tool), don't bother to update txn.
+ // If wallet doesn't have a chain (e.g when using bitcoin-wallet tool),
+ // don't bother to update txn.
if (HaveChain()) {
bool active;
auto lookup_block = [&](const uint256& hash, int& height, TxState& state) {