neo-go/pkg/rpc/server/testdata/test_contract.go

10 lines
236 B
Go
Raw Normal View History

package testdata
import "github.com/nspcc-dev/neo-go/pkg/interop/storage"
func Main(operation string, args []interface{}) interface{} {
ctx := storage.GetContext()
storage.Put(ctx, args[0].([]byte), args[1].([]byte))
return true
}