diff options
| author | practicalswift <[email protected]> | 2018-06-18 07:58:28 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-08-27 18:19:33 +0200 |
| commit | f34c8c466a0e514edac2e8683127b4176ad5d321 (patch) | |
| tree | 587ba001d5d6eaae71d234009098710dd30354c3 /src/rpc/blockchain.cpp | |
| parent | Merge #14023: Remove accounts rpcs (diff) | |
| download | discoin-f34c8c466a0e514edac2e8683127b4176ad5d321.tar.xz discoin-f34c8c466a0e514edac2e8683127b4176ad5d321.zip | |
Make objects in range declarations immutable by default. Avoid unnecessary copying of objects in range declarations.
Diffstat (limited to 'src/rpc/blockchain.cpp')
| -rw-r--r-- | src/rpc/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index a77fea8ea..ee895bdbe 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -426,7 +426,7 @@ static void entryToJSON(UniValue &info, const CTxMemPoolEntry &e) EXCLUSIVE_LOCK UniValue spent(UniValue::VARR); const CTxMemPool::txiter &it = mempool.mapTx.find(tx.GetHash()); const CTxMemPool::setEntries &setChildren = mempool.GetMemPoolChildren(it); - for (const CTxMemPool::txiter &childiter : setChildren) { + for (CTxMemPool::txiter childiter : setChildren) { spent.push_back(childiter->GetTx().GetHash().ToString()); } |