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>
39 lines
917 B
Go
39 lines
917 B
Go
package netmap
|
|
|
|
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"
|
|
)
|
|
|
|
// NewEpoch is a new epoch Neo:Morph event.
|
|
type NewEpoch struct {
|
|
num uint64
|
|
}
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
func (NewEpoch) MorphEvent() {}
|
|
|
|
// EpochNumber returns new epoch number.
|
|
func (s NewEpoch) EpochNumber() uint64 {
|
|
return s.num
|
|
}
|
|
|
|
// ParseNewEpoch is a parser of new epoch notification event.
|
|
//
|
|
// Result is type of NewEpoch.
|
|
func ParseNewEpoch(prms []stackitem.Item) (event.Event, error) {
|
|
if ln := len(prms); ln != 1 {
|
|
return nil, event.WrongNumberOfParameters(1, ln)
|
|
}
|
|
|
|
prmEpochNum, err := client.IntFromStackItem(prms[0])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not get integer epoch number")
|
|
}
|
|
|
|
return NewEpoch{
|
|
num: uint64(prmEpochNum),
|
|
}, nil
|
|
}
|