8 lines
360 B
Plaintext
8 lines
360 B
Plaintext
|
|
parameter unit;
|
|
return unit;
|
|
storage tez; # How much you have to send me
|
|
code {CDR; DUP; # Get the amount required (once for comparison, once to save back in storage)
|
|
AMOUNT; CMPLT; # Check to make sure no one is wasting my time
|
|
IF {FAIL} {UNIT; PAIR}} # Finish the transaction or reject the person
|