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

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

View File

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