git ssb

0+

wanderer🌟 / js-primea-hypervisor



Tree: 682f6674a0fc8dad41078c05d2dd54e7d71c0a42

Files: 682f6674a0fc8dad41078c05d2dd54e7d71c0a42 / tests / interface / coinbase.wast

448 bytesRaw
1;; starts with a coinbase of 5d48c1018904a172886829bbbd9c6f4a2d06c47b
2(module
3 (memory 1)
4
5 (import $coinbase "ethereum" "getBlockCoinbase" (param i32))
6 (export "test" 0)
7 (export "a" memory)
8 (func
9 (block
10 ;; loads the coinbase into memory
11 (call_import $coinbase (i32.const 0))
12 (if (i64.eq (i64.load (i32.const 0)) (i64.const 0x72a1048901c1485d)) ;; big endian
13 (return)
14 )
15 (unreachable)
16 )
17 )
18)
19

Built with git-ssb-web