fix merge forkchoice tests with mock get_pow_block

This commit is contained in:
protolambda 2021-05-05 16:24:44 +02:00
parent 865d7db5ca
commit cc11328f74
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ ExecutionState = Any
def get_pow_block(hash: Bytes32) -> PowBlock:
pass
return PowBlock(block_hash=hash, is_valid=True, is_processed=True, total_difficulty=TRANSITION_TOTAL_DIFFICULTY)
def get_execution_state(execution_state_root: Bytes32) -> ExecutionState: