forked from TrueCloudLab/frostfs-node
[#705] pkg/morph/netmap/wrapper: Add GetInnerRingList
method
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
b3c81116b9
commit
84361beada
1 changed files with 5 additions and 0 deletions
|
@ -6,3 +6,8 @@ import "github.com/nspcc-dev/neo-go/pkg/crypto/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()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue