Skip to content

Commit

Permalink
Merge branch 'tomas/disable-wasm-floats' (#3209)
Browse files Browse the repository at this point in the history
* tomas/disable-wasm-floats:
  changelog: add #3209
  namada/vm: disable floats in wasm
  • Loading branch information
brentstone committed May 9, 2024
2 parents afeef6d + 7f3a04c commit 70200db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Disallow use of floats in WASM.
([\#3209](https://github.com/anoma/namada/pull/3209))
2 changes: 1 addition & 1 deletion crates/namada/src/vm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const UNTRUSTED_WASM_FEATURES: WasmFeatures = WasmFeatures {
relaxed_simd: false,
threads: false,
tail_call: false,
floats: true,
floats: false,
multi_memory: false,
exceptions: false,
memory64: false,
Expand Down

0 comments on commit 70200db

Please sign in to comment.