leo/tests/compiler/address/equal.leo

14 lines
247 B
Plaintext
Raw Normal View History

2021-04-20 04:08:14 +03:00
/*
namespace: Compile
expectation: Pass
input_file:
2021-05-03 16:47:33 +03:00
- inputs/address1.in
- inputs/address2.in
2021-04-20 04:08:14 +03:00
*/
function main(x: address) -> bool {
const sender = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;
return x == sender;
}