Merge fixes.

This commit is contained in:
Sander Spies 2020-06-08 13:27:24 +02:00
parent c770aa3541
commit 4382c3c042
2 changed files with 6 additions and 6 deletions

View File

@ -25,10 +25,10 @@ type getTotalSupply = {callback : nat contract}
type action = type action =
Transfer of transfer Transfer of transfer
| Approve of approve | Approve of approve
| GetAllowance of getAllowance | GetAllowance of getAllowance
| GetBalance of getBalance | GetBalance of getBalance
| GetTotalSupply of getTotalSupply | GetTotalSupply of getTotalSupply
let transfer (p, s : transfer * storage) let transfer (p, s : transfer * storage)
: operation list * storage = : operation list * storage =

View File

@ -1,5 +1,5 @@
let check_signature let check_signature
(pk, signed, msg : key * signature * bytes) : bool = (pk, signed, msg : key * signature * bytes) : bool =
Crypto.check pk signed msg Crypto.check pk signed msg
let example : bool = let example : bool =