mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-22 04:24:05 +00:00
Remove skipValidation for block, block_header handlers.
As differences are being identified due to it skipping block parent root validation.
This commit is contained in:
parent
e795234504
commit
e356ae0405
@ -109,7 +109,7 @@ proc nfuzz_block(input: openArray[byte], output: ptr byte,
|
||||
raise newException(FuzzCrashError, "SSZ deserialisation failed, likely bug in preprocessing.", e)
|
||||
|
||||
try:
|
||||
result = state_transition(data.state, data.beaconBlock, {skipValidation})
|
||||
result = state_transition(data.state, data.beaconBlock, {})
|
||||
except IOError as e:
|
||||
# TODO why an IOError?
|
||||
raise newException(FuzzCrashError, "Unexpected IOError in state transition", e)
|
||||
@ -140,7 +140,8 @@ proc nfuzz_block_header(input: openArray[byte], output: ptr byte,
|
||||
raise newException(FuzzCrashError, "SSZ deserialisation failed, likely bug in preprocessing.", e)
|
||||
|
||||
try:
|
||||
result = process_block_header(data.state, data.beaconBlock, {skipValidation}, cache)
|
||||
# TODO disable bls
|
||||
result = process_block_header(data.state, data.beaconBlock, {}, cache)
|
||||
except IOError as e:
|
||||
# TODO why an IOError? - is this expected/should we return false?
|
||||
raise newException(FuzzCrashError, "Unexpected IOError in block header processing", e)
|
||||
|
Loading…
x
Reference in New Issue
Block a user