Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Compliance ¶
type Compliance interface { component.Component // OnClusterBlockProposal feeds a new block proposal into the processing pipeline. // Incoming proposals will be queued and eventually dispatched by worker. // This method is non-blocking. OnClusterBlockProposal(proposal flow.Slashable[messages.ClusterBlockProposal]) // OnSyncedClusterBlock feeds a block obtained from sync proposal into the processing pipeline. // Incoming proposals will be queued and eventually dispatched by worker. // This method is non-blocking. OnSyncedClusterBlock(block flow.Slashable[messages.ClusterBlockProposal]) }
Compliance defines the interface to the cluster consensus logic that precedes hotstuff logic. It's responsible for processing incoming block proposals broadcast by other cluster consensus participants as well as blocks obtained via the chain sync protocol. Compliance logic performs validation of incoming blocks by checking headers and payloads. Compliance logic guarantees that only valid blocks are added to chain state, passed to hotstuff and other components. Implementation need to be non-blocking and concurrency safe.
Directories ¶
Path | Synopsis |
---|---|
Package ingest implements an engine for receiving transactions that need to be packaged into a collection.
|
Package ingest implements an engine for receiving transactions that need to be packaged into a collection. |
Package pusher implements an engine for providing access to resources held by the collection node, including collections, collection guarantees, and transactions.
|
Package pusher implements an engine for providing access to resources held by the collection node, including collections, collection guarantees, and transactions. |
Package rpc implements accepting transactions into the system.
|
Package rpc implements accepting transactions into the system. |
Click to show internal directories.
Click to hide internal directories.