frostfs-node/pkg/innerring/util.go

12 lines
225 B
Go
Raw Normal View History

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()
}