We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 343fb78 commit 751bed0Copy full SHA for 751bed0
1 file changed
contracts/TimeLockToken.aes
@@ -92,11 +92,11 @@ contract TimeLockToken =
92
require(state.assetProperties[tokenId].isContinous == false, "asset is not time valued")
93
put(state{assetProperties[tokenId].InitialPrice = LivePrice})
94
95
- // return the event name that is azssigned to token ID
+ // return the option price value that is azssigned to token ID
96
entrypoint getPriceValue(tokenId : int) : string =
97
state.assetProperties[tokenId].InitialPrice
98
99
- // create event with tokenid and for the address "to"
+ // create option price with tokenid and for the address "to"
100
private stateful function _mint(token_id: int, to: address) =
101
only_owner(Call.caller)
102
require(!check_token_exists(token_id), "Token can't be overrided")
0 commit comments