628d818163
This reverts commit 6ffe220d928dc3137496bcea0cc0f4d72edc2846.
5 lines
293 B
Plaintext
5 lines
293 B
Plaintext
const owner: address = ("tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx": address);
|
|
function main (const p : unit ; const s : unit) : (list(operation) * unit) is
|
|
block {
|
|
if source =/= owner then failwith("This address can't call the contract") else skip
|
|
} with ((nil : list(operation)), unit); |