diff options
| author | Russell Yanofsky <[email protected]> | 2017-06-01 11:48:29 -0400 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2017-06-01 11:48:29 -0400 |
| commit | b9b814a38ee768ec8a902544722b81c4b9866834 (patch) | |
| tree | e799ab93b1b94dded70b76d5680078dd7b6818f3 /src | |
| parent | Merge #9539: [net] Avoid initialization to a value that is never read (diff) | |
| download | discoin-b9b814a38ee768ec8a902544722b81c4b9866834.tar.xz discoin-b9b814a38ee768ec8a902544722b81c4b9866834.zip | |
Avoid CWalletTx copies in GetAddressBalances and GetAddressGroupings
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/wallet.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 997515a04..62d46ba72 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3261,9 +3261,9 @@ std::map<CTxDestination, CAmount> CWallet::GetAddressBalances() { LOCK(cs_wallet); - BOOST_FOREACH(PAIRTYPE(uint256, CWalletTx) walletEntry, mapWallet) + for (const auto& walletEntry : mapWallet) { - CWalletTx *pcoin = &walletEntry.second; + const CWalletTx *pcoin = &walletEntry.second; if (!pcoin->IsTrusted()) continue; @@ -3301,9 +3301,9 @@ std::set< std::set<CTxDestination> > CWallet::GetAddressGroupings() std::set< std::set<CTxDestination> > groupings; std::set<CTxDestination> grouping; - BOOST_FOREACH(PAIRTYPE(uint256, CWalletTx) walletEntry, mapWallet) + for (const auto& walletEntry : mapWallet) { - CWalletTx *pcoin = &walletEntry.second; + const CWalletTx *pcoin = &walletEntry.second; if (pcoin->tx->vin.size() > 0) { |