Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetLatestNetworkMap ¶ added in v0.12.0
GetLatestNetworkMap requests and returns latest network map from storage.
Types ¶
type Source ¶ added in v0.12.0
type Source interface { // GetNetMap reads the diff-th past network map from the storage. // Calling with zero diff returns latest network map. // It returns the pointer to requested network map and any error encountered. // // GetNetMap must return exactly one non-nil value. // GetNetMap must return ErrNotFound if the network map is not in storage. // // Implementations must not retain the network map pointer and modify // the network map through it. GetNetMap(diff uint64) (*netmap.Netmap, error) // GetNetMapByEpoch reads network map by the epoch number from the storage. // It returns the pointer to requested network map and any error encountered. // // Must return exactly one non-nil value. // // Implementations must not retain the network map pointer and modify // the network map through it. GetNetMapByEpoch(epoch uint64) (*netmap.Netmap, error) // Epoch reads current epoch from the storage. // It returns number of the current epoch and any error encountered. // // Must return exactly one non-default value. Epoch() (uint64, error) }
Source is an interface that wraps basic network map receiving method.
Click to show internal directories.
Click to hide internal directories.