launch_callback
type vote_t is [@layout:comb] record [
voter : address;
candidate : key_hash;
execute_voting : bool;
votes : nat;
]
type launch_callback_t is [@layout:comb] record [
vote_params : vote_t;
bucket : address;
]
Field | Type | Description |
---|---|---|
voter | address | A user who votes |
candidate | key_hash | Baker the user votes for |
execute_voting | bool | Flag that indicates: execute voting or not |
votes | nat | Amount of votes that will be used for voting |
138
- only entered (transaction must be not the first transaction in the chain of calls).412
- non payable entrypoint (can't accept TEZ tokens during call of an entrypoint).
Last modified 1yr ago