diff options
author | Kristaps Kaupe <kristaps@blogiem.lv> | 2022-02-18 07:30:05 +0200 |
---|---|---|
committer | Kristaps Kaupe <kristaps@blogiem.lv> | 2022-02-18 07:30:05 +0200 |
commit | 62cc138ecb9cc7afcbe6fdb42b060a8f149826de (patch) | |
tree | 2bf892a22fd3445d3c038bf8f05b6f782ab48101 /src/wallet/wallet.cpp | |
parent | 0db3ad3ba41a76dff80bcb5f292e587da400ebf1 (diff) |
Rename wallet-tool to bitcoin-wallet in code comment
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 3 |
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) { |