Compare commits

...

2 Commits

Author SHA1 Message Date
Emma Jamieson-Hoare
e1e406ad1d Merge branch 'main' into matt/make-eth70-default 2026-03-02 14:42:25 +00:00
Matthias Seitz
8399bafdbe chore: enable eth70 2026-02-10 06:21:38 +01:00

View File

@@ -35,10 +35,11 @@ pub enum EthVersion {
impl EthVersion {
/// The latest known eth version
pub const LATEST: Self = Self::Eth69;
pub const LATEST: Self = Self::Eth70;
/// All known eth versions
pub const ALL_VERSIONS: &'static [Self] = &[Self::Eth69, Self::Eth68, Self::Eth67, Self::Eth66];
pub const ALL_VERSIONS: &'static [Self] =
&[Self::Eth70, Self::Eth69, Self::Eth68, Self::Eth67, Self::Eth66];
/// Returns true if the version is eth/66
pub const fn is_eth66(&self) -> bool {