forked from TrueCloudLab/frostfs-node
84361beada
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
13 lines
355 B
Go
13 lines
355 B
Go
package wrapper
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
|
|
// SetInnerRing updates inner ring keys.
|
|
func (w *Wrapper) SetInnerRing(keys keys.PublicKeys) error {
|
|
return w.client.SetInnerRing(keys)
|
|
}
|
|
|
|
// GetInnerRingList return current IR list.
|
|
func (w *Wrapper) GetInnerRingList() (keys.PublicKeys, error) {
|
|
return w.client.InnerRingList()
|
|
}
|