Anton Nikiforov
802192cfef
All checks were successful
Vulncheck / Vulncheck (pull_request) Successful in 1m57s
DCO action / DCO (pull_request) Successful in 3m3s
Build / Build Components (1.21) (pull_request) Successful in 5m0s
Build / Build Components (1.20) (pull_request) Successful in 5m6s
Tests and linters / Tests (1.20) (pull_request) Successful in 7m1s
Tests and linters / Staticcheck (pull_request) Successful in 6m55s
Tests and linters / Lint (pull_request) Successful in 7m30s
Tests and linters / Tests (1.21) (pull_request) Successful in 7m53s
Tests and linters / Tests with -race (pull_request) Successful in 8m21s
To avoid conflicts with `util` packages in other imports. Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
46 lines
1.4 KiB
Go
46 lines
1.4 KiB
Go
package initialize
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/helper"
|
|
"github.com/nspcc-dev/neo-go/pkg/core/native/noderoles"
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
"github.com/nspcc-dev/neo-go/pkg/rpcclient/rolemgmt"
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/callflag"
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/emit"
|
|
)
|
|
|
|
func setNotaryAndAlphabetNodes(c *helper.InitializeContext) error {
|
|
if ok, err := setRolesFinished(c); ok || err != nil {
|
|
if err == nil {
|
|
c.Command.Println("Stage 2: already performed.")
|
|
}
|
|
return err
|
|
}
|
|
|
|
var pubs []any
|
|
for _, acc := range c.Accounts {
|
|
pubs = append(pubs, acc.PrivateKey().PublicKey().Bytes())
|
|
}
|
|
|
|
w := io.NewBufBinWriter()
|
|
emit.AppCall(w.BinWriter, rolemgmt.Hash, "designateAsRole",
|
|
callflag.States|callflag.AllowNotify, int64(noderoles.P2PNotary), pubs)
|
|
emit.AppCall(w.BinWriter, rolemgmt.Hash, "designateAsRole",
|
|
callflag.States|callflag.AllowNotify, int64(noderoles.NeoFSAlphabet), pubs)
|
|
|
|
if err := c.SendCommitteeTx(w.Bytes(), false); err != nil {
|
|
return err
|
|
}
|
|
|
|
return c.AwaitTx()
|
|
}
|
|
|
|
func setRolesFinished(c *helper.InitializeContext) (bool, error) {
|
|
height, err := c.Client.GetBlockCount()
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
pubs, err := helper.GetDesignatedByRole(c.ReadOnlyInvoker, rolemgmt.Hash, noderoles.NeoFSAlphabet, height)
|
|
return len(pubs) == len(c.Wallets), err
|
|
}
|