Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Accepted ¶ added in v1.9.6
type Accepted interface { validators.SetCallbackListener // SetLastAccepted updates the latest accepted block for [nodeID] to // [blockID]. If [nodeID] is not currently a validator, this is a noop. SetLastAccepted(nodeID ids.NodeID, blockID ids.ID) // LastAccepted returns the latest known accepted block of [nodeID]. If // [nodeID]'s last accepted block was never unknown, false will be returned. LastAccepted(nodeID ids.NodeID) (ids.ID, bool) }
func NewAccepted ¶ added in v1.9.6
func NewAccepted() Accepted
type Peers ¶ added in v1.7.11
type Peers interface { validators.SetCallbackListener validators.Connector // ConnectedWeight returns the currently connected stake weight ConnectedWeight() uint64 // PreferredPeers returns the currently connected validators. If there are // no currently connected validators then it will return the currently // connected peers. PreferredPeers() set.Set[ids.NodeID] }
Click to show internal directories.
Click to hide internal directories.