diff --git a/CHANGELOG.md b/CHANGELOG.md index a9daa77e5..d0a428b65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Next release +- fix(version constants): 0.13.2 was mapped to wrong constants - fix(compilation): devnet contract artifacts are not compiled by `cargo build` anymore - feat: add fgw get_block_traces - refactor: use `hyper` & `tower` instead of `reqwest` for feeder client diff --git a/crates/primitives/chain_config/src/chain_config.rs b/crates/primitives/chain_config/src/chain_config.rs index 3549a7b7c..b23298c74 100644 --- a/crates/primitives/chain_config/src/chain_config.rs +++ b/crates/primitives/chain_config/src/chain_config.rs @@ -361,7 +361,7 @@ impl Default for ChainVersionedConstants { (StarknetVersion::V0_13_0, BLOCKIFIER_VERSIONED_CONSTANTS_0_13_0.deref().clone()), (StarknetVersion::V0_13_1, BLOCKIFIER_VERSIONED_CONSTANTS_0_13_1.deref().clone()), (StarknetVersion::V0_13_1_1, BLOCKIFIER_VERSIONED_CONSTANTS_0_13_1_1.deref().clone()), - (StarknetVersion::V0_13_2, VersionedConstants::latest_constants().clone()), + (StarknetVersion::V0_13_2, BLOCKIFIER_VERSIONED_CONSTANTS_0_13_2.deref().clone()), ] .into() }