forked from TrueCloudLab/frostfs-node
11 lines
250 B
Go
11 lines
250 B
Go
package wrapper
|
|
|
|
// Epoch represents the NeoFS epoch.
|
|
// FIXME: correct the definition.
|
|
type Epoch struct{}
|
|
|
|
// NewEpoch updates NeoFS epoch number through
|
|
// Netmap contract call.
|
|
func (w *Wrapper) NewEpoch(e Epoch) error {
|
|
panic("implement me")
|
|
}
|