2019-11-09 11:27:30 +04:00
|
|
|
function cb(const a : address; const s : unit) : list(operation) * unit is
|
2019-11-20 03:19:12 +04:00
|
|
|
block {
|
|
|
|
const c : contract(unit) = get_entrypoint("%cb", a)
|
|
|
|
}
|
2019-11-09 11:27:30 +04:00
|
|
|
with (list transaction(unit, 0mutez, c) end, s)
|