Update tests for entrypoints
This commit is contained in:
@@ -3,7 +3,7 @@ contract Counter =
|
||||
|
||||
record state = { value : int }
|
||||
|
||||
function init(val) = { value = val }
|
||||
function get() = state.value
|
||||
stateful function tick() = put(state{ value = state.value + 1 })
|
||||
entrypoint init(val) = { value = val }
|
||||
entrypoint get() = state.value
|
||||
stateful entrypoint tick() = put(state{ value = state.value + 1 })
|
||||
|
||||
|
||||
Reference in New Issue
Block a user