Skip to content

Commit

Permalink
fix: 0.13.2 had wrong version constants (#366)
Browse files Browse the repository at this point in the history
Co-authored-by: mohiiit <[email protected]>
  • Loading branch information
Mohiiit and mohiiit authored Oct 26, 2024
1 parent a0fa067 commit 3ffd494
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives/chain_config/src/chain_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit 3ffd494

Please sign in to comment.