Update tests for entrypoints
This commit is contained in:
@@ -1,12 +1,8 @@
|
||||
contract TestContract =
|
||||
record state = {
|
||||
_allowed : map(address, map(address, int))}
|
||||
record state = {_allowed : map(address, map(address, int))}
|
||||
|
||||
public stateful function init() = {
|
||||
_allowed = {}}
|
||||
|
||||
public stateful function approve(spender: address, value: int) : bool =
|
||||
entrypoint init() = {_allowed = {}}
|
||||
|
||||
stateful entrypoint approve(spender: address, value: int) : bool =
|
||||
put(state{_allowed[Call.caller][spender] = value})
|
||||
|
||||
true
|
||||
|
||||
Reference in New Issue
Block a user