fix some bugx, adjust stucts

This commit is contained in:
Daniel Knopik
2022-09-17 11:26:18 +02:00
parent 8e4e499b51
commit 95203c51d4
20 changed files with 256 additions and 20 deletions

View File

@@ -37,7 +37,7 @@ pub fn process_epoch<T: EthSpec>(
match state {
BeaconState::Base(_) => base::process_epoch(state, spec),
BeaconState::Altair(_) | BeaconState::Merge(_) => altair::process_epoch(state, spec),
BeaconState::Altair(_) | BeaconState::Merge(_) | BeaconState::Eip4844(_) => altair::process_epoch(state, spec),
}
}