forked from TrueCloudLab/frostfs-node
Dmitrii Stepanov
8088063195
Split for user and control methods. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
39 lines
1 KiB
Go
39 lines
1 KiB
Go
package netmap
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/client"
|
|
)
|
|
|
|
// NewEpoch updates FrostFS epoch number through
|
|
// Netmap contract call.
|
|
func (c *Client) NewEpoch(epoch uint64) error {
|
|
prm := client.InvokePrm{}
|
|
prm.SetMethod(newEpochMethod)
|
|
prm.SetArgs(epoch)
|
|
|
|
_, err := c.client.Invoke(prm)
|
|
if err != nil {
|
|
return fmt.Errorf("could not invoke method (%s): %w", newEpochMethod, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// NewEpochControl updates FrostFS epoch number through
|
|
// control notary transaction internally to ensure all
|
|
// nodes produce the same transaction with high probability.
|
|
// If vub > 0, vub will be used as valid until block value.
|
|
func (c *Client) NewEpochControl(epoch uint64, vub uint32) (uint32, error) {
|
|
prm := client.InvokePrm{}
|
|
prm.SetMethod(newEpochMethod)
|
|
prm.SetArgs(epoch)
|
|
prm.SetControlTX(true)
|
|
prm.SetVUB(vub)
|
|
|
|
res, err := c.client.Invoke(prm)
|
|
if err != nil {
|
|
return 0, fmt.Errorf("could not invoke method (%s): %w", newEpochMethod, err)
|
|
}
|
|
return res.VUB, nil
|
|
}
|