diff options
| author | practicalswift <[email protected]> | 2017-05-18 09:42:14 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-05-19 09:56:16 +0200 |
| commit | 211adc074a662505f2b54f3f2755f4fefc167aac (patch) | |
| tree | 75ae8f49fcd201cc359664317df049f04c78c41b /src/net_processing.cpp | |
| parent | Merge #8329: Consensus: MOVEONLY: Move functions for tx verification (diff) | |
| download | discoin-211adc074a662505f2b54f3f2755f4fefc167aac.tar.xz discoin-211adc074a662505f2b54f3f2755f4fefc167aac.zip | |
Use range-based for loops (C++11) when looping over vector elements
Diffstat (limited to 'src/net_processing.cpp')
| -rw-r--r-- | src/net_processing.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp index aca88f266..3102c2ef9 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -754,8 +754,8 @@ void PeerLogicValidation::BlockConnected(const std::shared_ptr<const CBlock>& pb const CTransaction& tx = *ptx; // Which orphan pool entries must we evict? - for (size_t j = 0; j < tx.vin.size(); j++) { - auto itByPrev = mapOrphanTransactionsByPrev.find(tx.vin[j].prevout); + for (const auto& txin : tx.vin) { + auto itByPrev = mapOrphanTransactionsByPrev.find(txin.prevout); if (itByPrev == mapOrphanTransactionsByPrev.end()) continue; for (auto mi = itByPrev->second.begin(); mi != itByPrev->second.end(); ++mi) { const CTransaction& orphanTx = *(*mi)->second.tx; @@ -1553,10 +1553,8 @@ bool static ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStr uint32_t nFetchFlags = GetFetchFlags(pfrom); - for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) + for (CInv &inv : vInv) { - CInv &inv = vInv[nInv]; - if (interruptMsgProc) return true; |