Dmitrii Stepanov
8088063195
All checks were successful
DCO action / DCO (pull_request) Successful in 3m58s
Vulncheck / Vulncheck (pull_request) Successful in 4m51s
Build / Build Components (1.21) (pull_request) Successful in 5m47s
Build / Build Components (1.20) (pull_request) Successful in 5m57s
Tests and linters / Tests (1.20) (pull_request) Successful in 6m25s
Tests and linters / Staticcheck (pull_request) Successful in 6m31s
Tests and linters / Lint (pull_request) Successful in 7m15s
Tests and linters / Tests (1.21) (pull_request) Successful in 7m16s
Tests and linters / Tests with -race (pull_request) Successful in 8m30s
Split for user and control methods. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
61 lines
1.9 KiB
Go
61 lines
1.9 KiB
Go
package netmap
|
|
|
|
import (
|
|
netmapclient "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/client/netmap"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/netmap"
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
)
|
|
|
|
func NewNetmapClient(netmapClient *netmapclient.Client) Client {
|
|
return &netmapClientWrapper{
|
|
netmapClient: netmapClient,
|
|
}
|
|
}
|
|
|
|
type netmapClientWrapper struct {
|
|
netmapClient *netmapclient.Client
|
|
}
|
|
|
|
func (w *netmapClientWrapper) UpdatePeerState(p netmapclient.UpdatePeerPrm) error {
|
|
_, err := w.netmapClient.UpdatePeerState(p)
|
|
return err
|
|
}
|
|
|
|
func (w *netmapClientWrapper) MorphNotaryInvoke(contract util.Uint160, fee fixedn.Fixed8, nonce uint32, vub *uint32, method string, args ...any) error {
|
|
_, err := w.netmapClient.Morph().NotaryInvoke(contract, fee, nonce, vub, method, args...)
|
|
return err
|
|
}
|
|
|
|
func (w *netmapClientWrapper) ContractAddress() util.Uint160 {
|
|
return w.netmapClient.ContractAddress()
|
|
}
|
|
|
|
func (w *netmapClientWrapper) EpochDuration() (uint64, error) {
|
|
return w.netmapClient.EpochDuration()
|
|
}
|
|
|
|
func (w *netmapClientWrapper) MorphTxHeight(h util.Uint256) (res uint32, err error) {
|
|
return w.netmapClient.Morph().TxHeight(h)
|
|
}
|
|
|
|
func (w *netmapClientWrapper) NetMap() (*netmap.NetMap, error) {
|
|
return w.netmapClient.NetMap()
|
|
}
|
|
|
|
func (w *netmapClientWrapper) NewEpoch(epoch uint64) error {
|
|
return w.netmapClient.NewEpoch(epoch)
|
|
}
|
|
|
|
func (w *netmapClientWrapper) MorphIsValidScript(script []byte, signers []transaction.Signer) (valid bool, err error) {
|
|
return w.netmapClient.Morph().IsValidScript(script, signers)
|
|
}
|
|
|
|
func (w *netmapClientWrapper) AddPeer(p netmapclient.AddPeerPrm) error {
|
|
return w.netmapClient.AddPeer(p)
|
|
}
|
|
|
|
func (w *netmapClientWrapper) MorphNotarySignAndInvokeTX(mainTx *transaction.Transaction) error {
|
|
return w.netmapClient.Morph().NotarySignAndInvokeTX(mainTx)
|
|
}
|