Fix stdlib doc
This commit is contained in:
parent
5784f074a6
commit
9d76e6186a
@ -362,7 +362,7 @@ namespace Chain =
|
|||||||
|
|
||||||
#### tx_hash
|
#### tx_hash
|
||||||
```
|
```
|
||||||
Auth.tx_hash : option(Chain.tx)
|
Auth.tx_hash : option(hash)
|
||||||
```
|
```
|
||||||
|
|
||||||
Gets the transaction hash during authentication.
|
Gets the transaction hash during authentication.
|
||||||
@ -824,7 +824,7 @@ payable contract Auction =
|
|||||||
stateful entrypoint sell(amount) =
|
stateful entrypoint sell(amount) =
|
||||||
require(amount >= 0, "negative_amount")
|
require(amount >= 0, "negative_amount")
|
||||||
...
|
...
|
||||||
|
|
||||||
main contract Market =
|
main contract Market =
|
||||||
type state = list(Auction)
|
type state = list(Auction)
|
||||||
entrypoint init() = []
|
entrypoint init() = []
|
||||||
@ -876,7 +876,7 @@ payable contract interface Auction =
|
|||||||
entrypoint init : (int, string) => void
|
entrypoint init : (int, string) => void
|
||||||
stateful payable entrypoint buy : (int) => ()
|
stateful payable entrypoint buy : (int) => ()
|
||||||
stateful entrypoint sell : (int) => ()
|
stateful entrypoint sell : (int) => ()
|
||||||
|
|
||||||
main contract Market =
|
main contract Market =
|
||||||
type state = list(Auction)
|
type state = list(Auction)
|
||||||
entrypoint init() = []
|
entrypoint init() = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user