19bb94cc04
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
11 lines
225 B
Go
11 lines
225 B
Go
package innerring
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-node/pkg/innerring/timers"
|
|
)
|
|
|
|
type blockTimerWrapper timers.BlockTimer
|
|
|
|
func (t *blockTimerWrapper) ResetEpochTimer() error {
|
|
return (*timers.BlockTimer)(t).Reset()
|
|
}
|