diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-01-26 10:14:34 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-01-26 10:15:21 +0100 |
| commit | 10dc58a2aa79f0ef98ed27de6f193b9024594d54 (patch) | |
| tree | 972f4c4d1b024bd41c58efe6a2ecae0939a6bbd3 /src/net_processing.cpp | |
| parent | Merge #9613: [wallet] Clarify getbalance help string to explain interaction w... (diff) | |
| parent | Do not shadow local variable named `tx`. (diff) | |
| download | discoin-10dc58a2aa79f0ef98ed27de6f193b9024594d54.tar.xz discoin-10dc58a2aa79f0ef98ed27de6f193b9024594d54.zip | |
Merge #9587: Do not shadow local variable named `tx`.
44f2baa Do not shadow local variable named `tx`. (Pavel JanÃk)
Diffstat (limited to 'src/net_processing.cpp')
| -rw-r--r-- | src/net_processing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp index 36a525763..5027c5109 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -1877,8 +1877,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, } } - for (const CTransactionRef& tx : lRemovedTxn) - AddToCompactExtraTransactions(tx); + for (const CTransactionRef& removedTx : lRemovedTxn) + AddToCompactExtraTransactions(removedTx); int nDoS = 0; if (state.IsInvalid(nDoS)) |