[#392] ir: Remove bitsize from IR indices

There is no need to specify that IR indices are 32 bits in size.

Change return types of `Indexer` interface methods in audit and alphabet
packages. Support interface changes in `Server` implementation.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-02-21 09:28:53 +03:00 committed by Alex Vanin
parent 645bef9de9
commit 397c3b6757
4 changed files with 9 additions and 9 deletions

View file

@ -20,8 +20,8 @@ import (
type (
// Indexer is a callback interface for inner ring global state.
Indexer interface {
Index() int32
InnerRingSize() int32
Index() int
InnerRingSize() int
}
// NeoFSClientCache is an interface for cache of neofs RPC clients