forked from TrueCloudLab/neoneo-go
0e2a1f40ba
Simple transfer from multisig account to the account of one of the validators.
9 lines
237 B
Go
9 lines
237 B
Go
package testdata
|
|
|
|
import "github.com/CityOfZion/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
|
|
}
|