Change not existing mutez type to existing tez type

This commit is contained in:
Sander Spies 2020-03-31 17:00:17 +02:00
parent 9cd750442a
commit 0d46be7425
2 changed files with 10 additions and 10 deletions

View File

@ -21,13 +21,13 @@ type timestamp
A date in the real world.
<SyntaxTitle syntax="pascaligo">
type mutez
type tez
</SyntaxTitle>
<SyntaxTitle syntax="cameligo">
type mutez
type tez
</SyntaxTitle>
<SyntaxTitle syntax="reasonligo">
type mutez
type tez
</SyntaxTitle>
A specific type for tokens.
@ -83,13 +83,13 @@ type chain_id
The identifier of a chain, used to indicate test or main chains.
<SyntaxTitle syntax="pascaligo">
function balance : mutez
function balance : tez
</SyntaxTitle>
<SyntaxTitle syntax="cameligo">
val balance : mutez
val balance : tez
</SyntaxTitle>
<SyntaxTitle syntax="reasonligo">
let balance: mutez
let balance: tez
</SyntaxTitle>
Get the balance for the contract.
@ -263,13 +263,13 @@ let not_tomorrow: bool = (Tezos.now == in_24_hrs);
<SyntaxTitle syntax="pascaligo">
function amount : mutez
function amount : tez
</SyntaxTitle>
<SyntaxTitle syntax="cameligo">
val amount : mutez
val amount : tez
</SyntaxTitle>
<SyntaxTitle syntax="reasonligo">
let amount: mutez
let amount: tez
</SyntaxTitle>
Get the amount of tez provided by the sender to complete this

View File

@ -823,7 +823,7 @@ example, in verbose style:
type store is
record
goal : mutez; // Millionth of a tez
goal : tez;
deadline : timestamp;
backers : map (address, nat);
funded : bool