run historical_summary ef tests for 4844

This commit is contained in:
realbigsean
2023-01-12 11:15:33 -05:00
parent 63da81de62
commit c705be202b
2 changed files with 5 additions and 5 deletions

View File

@@ -64,9 +64,9 @@ pub fn previous_fork(fork_name: ForkName) -> ForkName {
match fork_name {
ForkName::Base => ForkName::Base,
ForkName::Altair => ForkName::Base,
ForkName::Merge => ForkName::Altair, // TODO: Check this when tests are released..
ForkName::Capella => ForkName::Merge, // TODO: Check this when tests are released..
ForkName::Eip4844 => ForkName::Capella, // TODO: Check this when tests are released..
ForkName::Merge => ForkName::Altair,
ForkName::Capella => ForkName::Merge,
ForkName::Eip4844 => ForkName::Capella,
}
}