2020-07-24 13:54:03 +00:00
|
|
|
package wrapper
|
|
|
|
|
|
|
|
// NetMap represents the NeoFS network map.
|
2020-08-21 11:32:03 +00:00
|
|
|
// FIXME: correct the definition.
|
|
|
|
type NetMap struct{}
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// GetNetMap receives information list about storage nodes
|
|
|
|
// through the Netmap contract call, composes network map
|
|
|
|
// from them and returns it.
|
|
|
|
func (w *Wrapper) GetNetMap() (*NetMap, error) {
|
2020-08-21 11:32:03 +00:00
|
|
|
panic("implement me")
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|