Merge pull request #4533
43005cf
Fix semantic typo in state.CorruptionPossible check (kazcw)
This commit is contained in:
commit
ea8c288a35
1 changed files with 1 additions and 1 deletions
|
@ -2517,7 +2517,7 @@ bool AcceptBlock(CBlock& block, CValidationState& state, CBlockIndex** ppindex,
|
|||
return false;
|
||||
|
||||
if (!CheckBlock(block, state)) {
|
||||
if (state.Invalid() && !state.CorruptionPossible()) {
|
||||
if (state.IsInvalid() && !state.CorruptionPossible()) {
|
||||
pindex->nStatus |= BLOCK_FAILED_VALID;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue