Skip to content

Commit

Permalink
Enable sign_ext in parity-wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Jun 22, 2023
1 parent a2fdd07 commit 54f32f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ and this project adheres to
- cosmwasm-vm: Add `Cache::save_wasm_unchecked` to save Wasm blobs that have
been checked before. This is useful for state-sync where we know the Wasm code
was checked when it was first uploaded. ([#1635])
- cosmwasm-vm: Allow sign extension Wasm opcodes in static validation. This
allows contracts to be compiled with Rust 1.70.0 and above. ([#1727])

[#1635]: https://github.com/CosmWasm/cosmwasm/pull/1635
[#1647]: https://github.com/CosmWasm/cosmwasm/pull/1647
[#1684]: https://github.com/CosmWasm/cosmwasm/pull/1684
[#1687]: https://github.com/CosmWasm/cosmwasm/pull/1687
[#1727]: https://github.com/CosmWasm/cosmwasm/issues/1727

### Changed

Expand Down
2 changes: 1 addition & 1 deletion packages/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ crc32fast = "1.3.2"
cosmwasm-std = { path = "../std", version = "1.2.7", default-features = false }
cosmwasm-crypto = { path = "../crypto", version = "1.2.7" }
hex = "0.4"
parity-wasm = "0.45"
parity-wasm = { version = "0.45", features = ["sign_ext"] }
schemars = "0.8.3"
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }
serde_json = "1.0.40"
Expand Down

0 comments on commit 54f32f4

Please sign in to comment.