Documentation ¶
Index ¶
- Variables
- type Broadcast
- type BroadcastCB
- type ConsensusDoneCB
- type ConsensusMetrics
- type CreateBlockCB
- type Noop
- type Scheme
- type Standalone
- func (n *Standalone) Calibrate(uint64)
- func (n *Standalone) HandleConsensusMsg(msg *iotexrpc.Consensus) error
- func (n *Standalone) Metrics() (ConsensusMetrics, error)
- func (n *Standalone) Start(ctx context.Context) error
- func (n *Standalone) Stop(ctx context.Context) error
- func (n *Standalone) ValidateBlockFooter(*block.Block) error
- type TellPeerCB
Constants ¶
This section is empty.
Variables ¶
var ( // ErrNotImplemented indicates the method is not implemented yet ErrNotImplemented = errors.New("not implemented") )
Functions ¶
This section is empty.
Types ¶
type BroadcastCB ¶
BroadcastCB defines the callback to publish the consensus result
type ConsensusDoneCB ¶
ConsensusDoneCB defines the callback when consensus is reached
type ConsensusMetrics ¶ added in v0.2.0
type ConsensusMetrics struct { LatestEpoch uint64 LatestHeight uint64 LatestDelegates []string LatestBlockProducer string Candidates []string }
ConsensusMetrics contains consensus metrics to expose
type CreateBlockCB ¶
CreateBlockCB defines the callback to create a new block
type Noop ¶
type Noop struct { }
Noop is the consensus scheme that does NOT create blocks
func (*Noop) HandleConsensusMsg ¶ added in v0.4.4
HandleConsensusMsg handles incoming consensus message
func (*Noop) Metrics ¶ added in v0.2.0
func (n *Noop) Metrics() (ConsensusMetrics, error)
Metrics is not implemented for standalone scheme
type Scheme ¶
type Scheme interface { lifecycle.StartStopper HandleConsensusMsg(msg *iotexrpc.Consensus) error Calibrate(uint64) Metrics() (ConsensusMetrics, error) }
Scheme is the interface that consensus schemes should implement
func NewStandalone ¶
func NewStandalone(create CreateBlockCB, commit ConsensusDoneCB, pub BroadcastCB, bc blockchain.Blockchain, interval time.Duration) Scheme
NewStandalone creates a Standalone struct.
type Standalone ¶
type Standalone struct {
// contains filtered or unexported fields
}
Standalone is the consensus scheme that periodically create blocks
func (*Standalone) Calibrate ¶ added in v0.4.4
func (n *Standalone) Calibrate(uint64)
Calibrate triggers an event to calibrate consensus context
func (*Standalone) HandleConsensusMsg ¶ added in v0.4.4
func (n *Standalone) HandleConsensusMsg(msg *iotexrpc.Consensus) error
HandleConsensusMsg handles incoming consensus message
func (*Standalone) Metrics ¶ added in v0.2.0
func (n *Standalone) Metrics() (ConsensusMetrics, error)
Metrics is not implemented for standalone scheme
func (*Standalone) Start ¶
func (n *Standalone) Start(ctx context.Context) error
Start starts the service for a standalone
func (*Standalone) Stop ¶
func (n *Standalone) Stop(ctx context.Context) error
Stop stops the service for a standalone
func (*Standalone) ValidateBlockFooter ¶ added in v0.4.4
func (n *Standalone) ValidateBlockFooter(*block.Block) error
ValidateBlockFooter validates signatures in block footer
type TellPeerCB ¶
TellPeerCB defines the callback to tell (which is a unicast) message to peers on P2P network