Documentation ¶
Overview ¶
Package miner is responsible for creating valid blocks that contain valid activation transactions and transactions
Index ¶
- func ActiveSetFromEpochFirstBlock(db sql.Executor, epoch types.EpochID) ([]types.ATXID, error)
- type ActiveSetPreparation
- type Opt
- func WithActiveSetPrepation(prep ActiveSetPreparation) Opt
- func WithHdist(dist uint32) Opt
- func WithLayerPerEpoch(layers uint32) Opt
- func WithLayerSize(size uint32) Opt
- func WithLogger(logger log.Log) Opt
- func WithMinGoodAtxPercent(percent int) Opt
- func WithMinimalActiveSetWeight(weight []types.EpochMinimalActiveWeight) Opt
- func WithNetworkDelay(delay time.Duration) Opt
- func WithSigners(signers ...*signing.EdSigner) Opt
- func WithWorkersLimit(limit int) Opt
- type ProposalBuilder
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ActiveSetPreparation ¶ added in v1.4.3
type ActiveSetPreparation struct { // Window describes how much in advance the active set should be prepared. Window time.Duration `mapstructure:"window"` // RetryInterval describes how often the active set is retried. RetryInterval time.Duration `mapstructure:"retry-interval"` // Tries describes how many times the active set is retried. Tries int `mapstructure:"tries"` }
ActiveSetPreparation is a configuration to enable computation of activeset in advance.
func DefaultActiveSetPrepartion ¶ added in v1.4.3
func DefaultActiveSetPrepartion() ActiveSetPreparation
type Opt ¶ added in v1.0.0
type Opt func(h *ProposalBuilder)
Opt for configuring ProposalBuilder.
func WithActiveSetPrepation ¶ added in v1.4.3
func WithActiveSetPrepation(prep ActiveSetPreparation) Opt
WithActiveSetPrepation overwrites configuration for activeset preparation.
func WithLayerPerEpoch ¶ added in v1.0.0
WithLayerPerEpoch defines the number of layers per epoch.
func WithLayerSize ¶ added in v1.0.0
WithLayerSize defines the average number of proposal per layer.
func WithLogger ¶ added in v1.0.0
WithLogger defines the logger.
func WithMinGoodAtxPercent ¶ added in v1.2.2
func WithMinimalActiveSetWeight ¶ added in v1.0.0
func WithMinimalActiveSetWeight(weight []types.EpochMinimalActiveWeight) Opt
func WithNetworkDelay ¶ added in v1.0.7
func WithSigners ¶ added in v1.3.0
WithSigners guarantees that builder will start execution with provided list of signers. Should be after logging.
func WithWorkersLimit ¶ added in v1.3.0
WithWorkersLimit configures paralelization factor for builder operation when working with more than one signer.
type ProposalBuilder ¶ added in v1.0.0
type ProposalBuilder struct {
// contains filtered or unexported fields
}
ProposalBuilder builds Proposals for a miner.
func New ¶ added in v1.2.2
func New( clock layerClock, db sql.Executor, localdb sql.Executor, atxsdata *atxsdata.Data, publisher pubsub.Publisher, trtl votesEncoder, syncer system.SyncStateProvider, conState conservativeState, opts ...Opt, ) *ProposalBuilder
New creates a struct of block builder type.
func (*ProposalBuilder) Register ¶ added in v1.3.0
func (pb *ProposalBuilder) Register(sig *signing.EdSigner)
func (*ProposalBuilder) Run ¶ added in v1.2.2
func (pb *ProposalBuilder) Run(ctx context.Context) error
Start the loop that listens to layers and build proposals.
func (*ProposalBuilder) UpdateActiveSet ¶ added in v1.2.13
func (pb *ProposalBuilder) UpdateActiveSet(target types.EpochID, set []types.ATXID)