Add an extra line between function def

This commit is contained in:
Mikhail Kalinin 2021-06-03 12:31:59 +06:00
parent 6604830729
commit 6872c01682
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@ def get_transition_store(anchor_pow_block: PowBlock) -> TransitionStore:
transition_total_difficulty = anchor_pow_block.total_difficulty + TRANSITION_TOTAL_DIFFICULTY_OFFSET
return TransitionStore(transition_total_difficulty=transition_total_difficulty)
def initialize_transition_store(state: BeaconState) -> TransitionStore:
pow_block = get_pow_block(state.eth1_data.block_hash)
return get_transition_store(pow_block)