Browse Source

Fix crash bug with duplicate inputs within a transaction

Introduced by #9049
0.16^2
Suhas Daftuar 6 years ago committed by Wladimir J. van der Laan
parent
commit
d1dee20547
  1. 2
      src/validation.cpp

2
src/validation.cpp

@ -3032,7 +3032,7 @@ bool CheckBlock(const CBlock& block, CValidationState& state, const Consensus::P @@ -3032,7 +3032,7 @@ bool CheckBlock(const CBlock& block, CValidationState& state, const Consensus::P
// Check transactions
for (const auto& tx : block.vtx)
if (!CheckTransaction(*tx, state, false))
if (!CheckTransaction(*tx, state, true))
return state.Invalid(false, state.GetRejectCode(), state.GetRejectReason(),
strprintf("Transaction check failed (tx hash %s) %s", tx->GetHash().ToString(), state.GetDebugMessage()));

Loading…
Cancel
Save