diff --git a/pallas-traverse/Cargo.toml b/pallas-traverse/Cargo.toml index 03b818c..f28f096 100644 --- a/pallas-traverse/Cargo.toml +++ b/pallas-traverse/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pallas-traverse" description = "Utilities to traverse over multi-era block data" -version = "0.11.0" +version = "0.11.1" edition = "2021" repository = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas" diff --git a/pallas-traverse/src/probe.rs b/pallas-traverse/src/probe.rs index 91ac19c..2660ef0 100644 --- a/pallas-traverse/src/probe.rs +++ b/pallas-traverse/src/probe.rs @@ -29,6 +29,7 @@ pub fn block_era(cbor: &[u8]) -> Outcome { 3 => Outcome::Matched(Era::Allegra), 4 => Outcome::Matched(Era::Mary), 5 => Outcome::Matched(Era::Alonzo), + 6 => Outcome::Matched(Era::Babbage), _ => Outcome::Inconclusive, }, _ => Outcome::Inconclusive,