Add an extra line between function def
This commit is contained in:
parent
6604830729
commit
6872c01682
|
@ -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
|
transition_total_difficulty = anchor_pow_block.total_difficulty + TRANSITION_TOTAL_DIFFICULTY_OFFSET
|
||||||
return TransitionStore(transition_total_difficulty=transition_total_difficulty)
|
return TransitionStore(transition_total_difficulty=transition_total_difficulty)
|
||||||
|
|
||||||
|
|
||||||
def initialize_transition_store(state: BeaconState) -> TransitionStore:
|
def initialize_transition_store(state: BeaconState) -> TransitionStore:
|
||||||
pow_block = get_pow_block(state.eth1_data.block_hash)
|
pow_block = get_pow_block(state.eth1_data.block_hash)
|
||||||
return get_transition_store(pow_block)
|
return get_transition_store(pow_block)
|
||||||
|
|
Loading…
Reference in New Issue