Skip to content

Commit fb360aa

Browse files
committed
fix per_epoch_transition function signature
1 parent 63e4686 commit fb360aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eth/beacon/state_machines/forks/serenity/state_transitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ def per_block_transition(self, state: BeaconState, block: BaseBeaconBlock) -> Be
4343
state = process_attestations(state, block, self.config)
4444
return state
4545

46-
def per_epoch_transition(self, state: BeaconState, block: BaseBeaconBlock) -> BeaconState:
46+
def per_epoch_transition(self, state: BeaconState) -> BeaconState:
4747
# TODO
4848
return state

0 commit comments

Comments
 (0)