Merge branch 'error-tutorial' into 'dev'

Fix tutorial error.

See merge request ligolang/ligo!520
This commit is contained in:
Sander 2020-03-26 10:58:08 +00:00
commit 0220aac83e

View File

@ -169,7 +169,7 @@ function buy_taco (const taco_kind_index : nat ; var taco_shop_storage : taco_sh
const receiver : contract(unit) = get_contract (ownerAddress);
const payoutOperation : operation = transaction (unit, amount, receiver);
const operations : list(operation) = list [payoutOperation]
} with ((nil : list (operation)), taco_shop_storage)
} with ((operations : list (operation)), taco_shop_storage)
```
### Dry-run the Contract