mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 07:11:53 +03:00
14 lines
362 B
Plaintext
14 lines
362 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/address1.in
|
|
- inputs/address2.in
|
|
*/
|
|
|
|
function main(x: address) -> bool {
|
|
const sender = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;
|
|
const receiver = aleo18qgam03qe483tdrcc3fkqwpp38ehff4a2xma6lu7hams6lfpgcpq3dq05r;
|
|
|
|
return x == sender ? receiver == x : sender == x;
|
|
} |