Files: 276e1f2ef76f665728f308c95464327233c1ba98 / tests / interface / caller.wast
440 bytesRaw
1 | ;; starts with an caller of 5d48c1018904a172886829bbbd9c6f4a2d06c47b |
2 | (module |
3 | (import "ethereum" "getCaller" (func $caller (param i32))) |
4 | (memory 1) |
5 | (export "main" (func $main)) |
6 | (export "a" (memory 0)) |
7 | (func $main |
8 | (block |
9 | ;; loads the caller into memory |
10 | (call $caller (i32.const 0)) |
11 | (if (i64.eq (i64.load (i32.const 0)) (i64.const 0x72a1048901c1485d)) |
12 | (return) |
13 | ) |
14 | (unreachable) |
15 | ) |
16 | ) |
17 | ) |
18 |
Built with git-ssb-web