lighthouse/consensus/state_processing/src/upgrade.rs
realbigsean a5addf661c
Rename eip4844 to deneb (#4129)
* rename 4844 to deneb

* rename 4844 to deneb

* move excess data gas field

* get EF tests working

* fix ef tests lint

* fix the blob identifier ef test

* fix accessed files ef test script

* get beacon chain tests passing
2023-03-26 11:49:16 -04:00

10 lines
206 B
Rust

pub mod altair;
pub mod capella;
pub mod deneb;
pub mod merge;
pub use altair::upgrade_to_altair;
pub use capella::upgrade_to_capella;
pub use deneb::upgrade_to_deneb;
pub use merge::upgrade_to_bellatrix;