Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check signatures of host functions at initialization and sync functions list with spec #183

Merged
merged 1 commit into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ serde_json = { version = "1.0.93", default-features = false, features = ["alloc"
sha2 = { version = "0.10.6", default-features = false }
siphasher = { version = "0.3.10", default-features = false }
slab = { version = "0.4.7", default-features = false }
smallvec = "1.10.0"
smallvec = { version = "1.10.0", default-features = false }
snow = { version = "0.9.1", default-features = false, features = ["default-resolver"] }
tiny-keccak = { version = "2.0", features = ["keccak"] }
twox-hash = { version = "1.6.3", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions bin/wasm-node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Changed

- The Wasm virtual machine no longer tries to grab a table symbol named `__indirect_function_table`. This removes support for an old Substrate feature that no longer exists.
- The signature of host functions called by the Wasm runtime is now checked when the Wasm code is compiled rather than when the functions are called.

## 0.7.11 - 2022-02-13

Expand Down
Loading