fix child contract deployment example #811

Merged
zxq9 merged 1 commits from nikita-fuchs-patch-1 into master 2021-06-22 21:52:36 +09:00

View File

@ -194,7 +194,7 @@ contract IntHolder =
entrypoint get() = state entrypoint get() = state
main contract IntHolderFactory = main contract IntHolderFactory =
entrypoint new(x : int) : IntHolder = stateful entrypoint new(x : int) : IntHolder =
let ih = Chain.create(x) : IntHolder let ih = Chain.create(x) : IntHolder
ih ih
``` ```