Documentation ¶
Index ¶
- type AncestorTree
- type Config
- type Engine
- type EngineTest
- type Transitive
- func (t *Transitive) AppGossip(nodeID ids.NodeID, msg []byte) error
- func (t *Transitive) AppRequest(nodeID ids.NodeID, requestID uint32, deadline time.Time, request []byte) error
- func (t *Transitive) AppRequestFailed(nodeID ids.NodeID, requestID uint32) error
- func (t *Transitive) AppResponse(nodeID ids.NodeID, requestID uint32, response []byte) error
- func (t *Transitive) Chits(vdr ids.NodeID, requestID uint32, votes []ids.ID) error
- func (t *Transitive) Connected(nodeID ids.NodeID, nodeVersion version.Application) error
- func (t *Transitive) Context() *snow.ConsensusContext
- func (t *Transitive) Disconnected(nodeID ids.NodeID) error
- func (t *Transitive) GetBlock(blkID ids.ID) (snowman.Block, error)
- func (t *Transitive) GetFailed(nodeID ids.NodeID, requestID uint32) error
- func (t *Transitive) GetVM() common.VM
- func (t *Transitive) Gossip() error
- func (t *Transitive) Halt()
- func (t *Transitive) HealthCheck() (interface{}, error)
- func (m *Transitive) Initialize(namespace string, reg prometheus.Registerer) error
- func (t *Transitive) Notify(msg common.Message) error
- func (t *Transitive) PullQuery(nodeID ids.NodeID, requestID uint32, blkID ids.ID) error
- func (t *Transitive) PushQuery(vdr ids.NodeID, requestID uint32, blkBytes []byte) error
- func (t *Transitive) Put(nodeID ids.NodeID, requestID uint32, blkBytes []byte) error
- func (t *Transitive) QueryFailed(vdr ids.NodeID, requestID uint32) error
- func (t *Transitive) Shutdown() error
- func (t *Transitive) Start(startReqID uint32) error
- func (t *Transitive) Timeout() error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AncestorTree ¶ added in v1.6.4
type AncestorTree interface { Add(blkID ids.ID, parentID ids.ID) Has(blkID ids.ID) bool GetRoot(blkID ids.ID) ids.ID Remove(blkID ids.ID) RemoveSubtree(blkID ids.ID) Len() int }
func NewAncestorTree ¶ added in v1.6.4
func NewAncestorTree() AncestorTree
type Config ¶
type Config struct { common.AllGetsServer Ctx *snow.ConsensusContext VM block.ChainVM Sender common.Sender Validators validators.Set Params snowball.Parameters Consensus snowman.Consensus }
Config wraps all the parameters needed for a snowman engine
type Engine ¶
Engine describes the events that can occur to a Snowman instance.
The engine is used to fetch, order, and decide on the fate of blocks. This engine runs the leaderless version of the Snowman consensus protocol. Therefore, the liveness of this protocol tolerant to O(sqrt(n)) Byzantine Nodes where n is the number of nodes in the network. Therefore, this protocol should only be run in a Crash Fault Tolerant environment, or in an environment where lose of liveness and manual intervention is tolerable.
type EngineTest ¶ added in v1.7.5
type EngineTest struct { common.EngineTest CantGetBlock bool GetBlockF func(ids.ID) (snowman.Block, error) }
EngineTest is a test engine
func (*EngineTest) Default ¶ added in v1.7.5
func (e *EngineTest) Default(cant bool)
type Transitive ¶
type Transitive struct { Config // list of NoOpsHandler for messages dropped by engine common.StateSummaryFrontierHandler common.AcceptedStateSummaryHandler common.AcceptedFrontierHandler common.AcceptedHandler common.AncestorsHandler RequestID uint32 // contains filtered or unexported fields }
Transitive implements the Engine interface by attempting to fetch all Transitive dependencies.
func (*Transitive) AppGossip ¶ added in v1.5.3
func (t *Transitive) AppGossip(nodeID ids.NodeID, msg []byte) error
func (*Transitive) AppRequest ¶ added in v1.5.3
func (*Transitive) AppRequestFailed ¶ added in v1.5.3
func (t *Transitive) AppRequestFailed(nodeID ids.NodeID, requestID uint32) error
func (*Transitive) AppResponse ¶ added in v1.5.3
func (*Transitive) Connected ¶ added in v1.7.4
func (t *Transitive) Connected(nodeID ids.NodeID, nodeVersion version.Application) error
func (*Transitive) Context ¶
func (t *Transitive) Context() *snow.ConsensusContext
func (*Transitive) Disconnected ¶ added in v1.7.4
func (t *Transitive) Disconnected(nodeID ids.NodeID) error
func (*Transitive) GetFailed ¶
func (t *Transitive) GetFailed(nodeID ids.NodeID, requestID uint32) error
func (*Transitive) GetVM ¶ added in v1.3.2
func (t *Transitive) GetVM() common.VM
func (*Transitive) Gossip ¶ added in v0.8.0
func (t *Transitive) Gossip() error
func (*Transitive) Halt ¶ added in v1.7.4
func (t *Transitive) Halt()
func (*Transitive) HealthCheck ¶ added in v1.2.1
func (t *Transitive) HealthCheck() (interface{}, error)
func (*Transitive) Initialize ¶
func (m *Transitive) Initialize(namespace string, reg prometheus.Registerer) error
Initialize the metrics
func (*Transitive) QueryFailed ¶
func (t *Transitive) QueryFailed(vdr ids.NodeID, requestID uint32) error
func (*Transitive) Shutdown ¶
func (t *Transitive) Shutdown() error
func (*Transitive) Start ¶ added in v1.7.4
func (t *Transitive) Start(startReqID uint32) error
func (*Transitive) Timeout ¶ added in v1.7.4
func (t *Transitive) Timeout() error