mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +03:00
16 lines
274 B
Plaintext
16 lines
274 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
*/
|
|
|
|
mapping account: address => u64;
|
|
|
|
@program
|
|
function mint_public(public receiver: address, public amount: u64) {
|
|
|
|
}
|
|
|
|
finalize mint_public (public receiver: address, public amount: u64) {
|
|
increment(account, receiver, amount);
|
|
}
|