2020-07-24 13:54:03 +00:00
|
|
|
package wrapper
|
|
|
|
|
2020-08-21 11:32:03 +00:00
|
|
|
// 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.
|
2020-08-21 11:32:03 +00:00
|
|
|
func (w *Wrapper) NewEpoch(e Epoch) error {
|
|
|
|
panic("implement me")
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|