Do not shadow local variable named `tx`.

This commit is contained in:
Pavel Janík 2017-01-19 20:39:03 +01:00
parent 82274c02ed
commit 44f2baac48
1 changed files with 2 additions and 2 deletions

View File

@ -1877,8 +1877,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
} }
} }
for (const CTransactionRef& tx : lRemovedTxn) for (const CTransactionRef& removedTx : lRemovedTxn)
AddToCompactExtraTransactions(tx); AddToCompactExtraTransactions(removedTx);
int nDoS = 0; int nDoS = 0;
if (state.IsInvalid(nDoS)) if (state.IsInvalid(nDoS))