aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2020-12-06 16:11:39 +0000
committerpracticalswift <practicalswift@users.noreply.github.com>2020-12-06 18:44:31 +0000
commit31b136e5802e1b1e5f9a9589736afe0652f34da2 (patch)
tree9779b5d95f79318082347ed7f762a53e0fdb6016 /src/wallet/wallet.cpp
parent1c65c075ee4c7f98d9c1fac5ed7576b96374d4e9 (diff)
downloadbitcoin-31b136e5802e1b1e5f9a9589736afe0652f34da2.tar.xz
Don't declare de facto const reference variables as non-const
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r--src/wallet/wallet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 5c3d7a9d75..ce668d0468 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -570,7 +570,7 @@ void CWallet::AddToSpends(const uint256& wtxid)
{
auto it = mapWallet.find(wtxid);
assert(it != mapWallet.end());
- CWalletTx& thisTx = it->second;
+ const CWalletTx& thisTx = it->second;
if (thisTx.IsCoinBase()) // Coinbases don't spend anything!
return;
@@ -1053,7 +1053,7 @@ bool CWallet::AbandonTransaction(const uint256& hashTx)
// Can't mark abandoned if confirmed or in mempool
auto it = mapWallet.find(hashTx);
assert(it != mapWallet.end());
- CWalletTx& origtx = it->second;
+ const CWalletTx& origtx = it->second;
if (origtx.GetDepthInMainChain() != 0 || origtx.InMempool()) {
return false;
}