mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
64effd0e6f
Small PR that introduce a new crate that will host RISC-V & wasm fixtures for testing pallet-contracts
13 lines
233 B
WebAssembly Text Format
13 lines
233 B
WebAssembly Text Format
;; Module that contains a float instruction which is illegal in deterministic mode
|
|
(module
|
|
(import "env" "memory" (memory 1 1))
|
|
(func (export "call")
|
|
f32.const 1
|
|
drop
|
|
)
|
|
(func (export "deploy")
|
|
f32.const 2
|
|
drop
|
|
)
|
|
)
|