mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
quorums: Don't shadow islockHash (#3875)
Signed-off-by: pasta <pasta@dashboost.org>
This commit is contained in:
parent
2937da2219
commit
a1f456c7ff
@ -415,9 +415,9 @@ bool CInstantSendManager::ProcessTx(const CTransaction& tx, bool allowReSigning,
|
|||||||
|
|
||||||
auto conflictingLock = GetConflictingLock(tx);
|
auto conflictingLock = GetConflictingLock(tx);
|
||||||
if (conflictingLock) {
|
if (conflictingLock) {
|
||||||
auto islockHash = ::SerializeHash(*conflictingLock);
|
auto conflictingLockHash = ::SerializeHash(*conflictingLock);
|
||||||
LogPrintf("CInstantSendManager::%s -- txid=%s: conflicts with islock %s, txid=%s\n", __func__,
|
LogPrintf("CInstantSendManager::%s -- txid=%s: conflicts with islock %s, txid=%s\n", __func__,
|
||||||
tx.GetHash().ToString(), islockHash.ToString(), conflictingLock->txid.ToString());
|
tx.GetHash().ToString(), conflictingLockHash.ToString(), conflictingLock->txid.ToString());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user