frostfs-node/pkg/morph/client/netmap/wrapper/new_epoch.go

12 lines
250 B
Go
Raw Normal View History

2020-07-24 13:54:03 +00:00
package wrapper
// Epoch represents the NeoFS epoch.
// FIXME: correct the definition.
type Epoch struct{}
2020-07-24 13:54:03 +00:00
// NewEpoch updates NeoFS epoch number through
// Netmap contract call.
func (w *Wrapper) NewEpoch(e Epoch) error {
panic("implement me")
2020-07-24 13:54:03 +00:00
}