mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-02 05:15:23 -05:00
Merge pull request #1946 from ericsson49/fix_is_valid_fraud_proof2
Fix `is_valid_fraud_proof` which tries to access `message` field of a `ShardBlock` instance
This commit is contained in:
@@ -133,7 +133,7 @@ def is_valid_fraud_proof(beacon_state: BeaconState,
|
||||
else:
|
||||
shard_state = transition.shard_states[offset_index - 1] # Not doing the actual state updates here.
|
||||
|
||||
process_shard_block(shard_state, block.message)
|
||||
process_shard_block(shard_state, block)
|
||||
if shard_state != transition.shard_states[offset_index]:
|
||||
return True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user