mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-02 09:45:50 +00:00
945e9410e4
Check that contract can be properly deployed and invoked.
14 lines
243 B
Go
14 lines
243 B
Go
package sub
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/interop/storage"
|
|
|
|
var Key = "sub"
|
|
|
|
func _deploy(isUpdate bool) {
|
|
ctx := storage.GetContext()
|
|
value := "sub create"
|
|
if isUpdate {
|
|
value = "sub update"
|
|
}
|
|
storage.Put(ctx, Key, value)
|
|
}
|