forked from TrueCloudLab/frostfs-node
9 lines
211 B
Go
9 lines
211 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)
|
||
|
}
|