mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-01-14 05:12:34 +00:00
9 lines
236 B
Go
9 lines
236 B
Go
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
|
|
}
|