Do not shadow local variable named tx
.
This commit is contained in:
parent
82274c02ed
commit
44f2baac48
1 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||||
|
|
Loading…
Reference in a new issue