frostfs-node/pkg/morph/client/netmap/add_peer.go

36 lines
717 B
Go
Raw Normal View History

2020-07-24 13:54:03 +00:00
package netmap
import (
"fmt"
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
2020-07-24 13:54:03 +00:00
)
// AddPeerArgs groups the arguments
// of add peer invocation call.
type AddPeerArgs struct {
info []byte
client.InvokePrmOptional
2020-07-24 13:54:03 +00:00
}
// SetInfo sets the peer information.
func (a *AddPeerArgs) SetInfo(v []byte) {
2020-07-24 13:54:03 +00:00
a.info = v
}
// AddPeer invokes the call of add peer method
// of NeoFS Netmap contract.
func (c *Client) AddPeer(args AddPeerArgs) error {
prm := client.InvokePrm{}
prm.SetMethod(addPeerMethod)
prm.SetArgs(args.info)
prm.InvokePrmOptional = args.InvokePrmOptional
if err := c.client.Invoke(prm); err != nil {
return fmt.Errorf("could not invoke method (%s): %w", addPeerMethod, err)
}
return nil
2020-07-24 13:54:03 +00:00
}