forked from TrueCloudLab/frostfs-node
174efc9df3
Neo-go does not use smartcontract.Parameter to return values anymore, so it's convertes partly removed from neofs-node. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
45 lines
941 B
Go
45 lines
941 B
Go
package neofs
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type Config struct {
|
|
key []byte
|
|
value []byte
|
|
}
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
func (Config) MorphEvent() {}
|
|
|
|
func (u Config) Key() []byte { return u.key }
|
|
|
|
func (u Config) Value() []byte { return u.value }
|
|
|
|
func ParseConfig(params []stackitem.Item) (event.Event, error) {
|
|
var (
|
|
ev Config
|
|
err error
|
|
)
|
|
|
|
if ln := len(params); ln != 2 {
|
|
return nil, event.WrongNumberOfParameters(2, ln)
|
|
}
|
|
|
|
// parse key
|
|
ev.key, err = client.BytesFromStackItem(params[0])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not get config key")
|
|
}
|
|
|
|
// parse value
|
|
ev.value, err = client.BytesFromStackItem(params[1])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not get config value")
|
|
}
|
|
|
|
return ev, nil
|
|
}
|