mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
3ae4be8662
* Allow indetermistic instructions off-chain * Apply suggestions from code review Co-authored-by: Sasha Gryaznov <hi@agryaznov.com> * fmt Co-authored-by: Sasha Gryaznov <hi@agryaznov.com>
12 lines
195 B
WebAssembly Text Format
12 lines
195 B
WebAssembly Text Format
;; Module that contains a float instruction which is illegal in deterministic mode
|
|
(module
|
|
(func (export "call")
|
|
f32.const 1
|
|
drop
|
|
)
|
|
(func (export "deploy")
|
|
f32.const 2
|
|
drop
|
|
)
|
|
)
|