forked from TrueCloudLab/frostfs-node
3c5b62d839
We don't use custom names and the only place where custom method option is used it provides the default name and can be omitted. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
35 lines
765 B
Go
35 lines
765 B
Go
package netmap
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
)
|
|
|
|
// NewEpochArgs groups the arguments
|
|
// of new epoch invocation call.
|
|
type NewEpochArgs struct {
|
|
number int64 // new epoch number
|
|
|
|
client.InvokePrmOptional
|
|
}
|
|
|
|
// SetEpochNumber sets the new epoch number.
|
|
func (a *NewEpochArgs) SetEpochNumber(v int64) {
|
|
a.number = v
|
|
}
|
|
|
|
// NewEpoch invokes the call of new epoch method
|
|
// of NeoFS Netmap contract.
|
|
func (c *Client) NewEpoch(args NewEpochArgs) error {
|
|
prm := client.InvokePrm{}
|
|
|
|
prm.SetMethod(newEpochMethod)
|
|
prm.SetArgs(args.number)
|
|
prm.InvokePrmOptional = args.InvokePrmOptional
|
|
|
|
if err := c.client.Invoke(prm); err != nil {
|
|
return fmt.Errorf("could not invoke method (%s): %w", newEpochMethod, err)
|
|
}
|
|
return nil
|
|
}
|