mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-02 19:45:50 +00:00
c1cc7e6f9d
1. Management contract has 2 overloads of `deploy` method. 2. Normal contracts should have `_deploy` with 2 parameters.
14 lines
261 B
Go
14 lines
261 B
Go
package sub
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/interop/storage"
|
|
|
|
var Key = "sub"
|
|
|
|
func _deploy(data interface{}, isUpdate bool) {
|
|
ctx := storage.GetContext()
|
|
value := "sub create"
|
|
if isUpdate {
|
|
value = "sub update"
|
|
}
|
|
storage.Put(ctx, Key, value)
|
|
}
|