Struct ethcore::engines::AuthorityRound[][src]

pub struct AuthorityRound { /* fields omitted */ }

Engine using AuthorityRound proof-of-authority BFT consensus.

Methods

impl AuthorityRound
[src]

Create a new instance of AuthorityRound engine.

Trait Implementations

impl Engine<EthereumMachine> for AuthorityRound
[src]

The name of this engine.

Get access to the underlying state machine.

Three fields - consensus step and the corresponding proposer signature, and a list of empty step messages (which should be empty if no steps are skipped)

Trigger next step of the consensus engine.

Additional engine-specific information for the user/developer concerning header.

Maximum number of uncles a block is allowed to declare.

Populate a header's fields based on its parent's header. Usually implements the chain scoring rule based on weight. Read more

None means that it requires external input (e.g. PoW) to seal a block. Some(true) means the engine is currently prime for seal generation (i.e. node is the current validator). Some(false) means that the node might seal internally but is not qualified now. Read more

Handle any potential consensus messages; updating consensus state and potentially issuing a new one. Read more

Attempt to seal the block internally.

This operation is synchronous and may (quite reasonably) not be available, in which case Seal::None will be returned.

Verify a locally-generated seal of a header. Read more

Block transformation functions, before the transactions. epoch_begin set to true if this block kicks off an epoch. Read more

Apply the block reward on finalisation of the block.

Check the number of seal fields.

Do the step and gas limit validation.

Phase 4 verification. Verify block header against potentially external data. Should only be called when register_client has been called previously. Read more

Genesis epoch data.

Whether an epoch change is signalled at the given header but will require finality. If a change can be enacted immediately then return No from this function but Yes from is_epoch_end. Read more

Whether a block is the end of an epoch. Read more

Create an epoch verifier from validation proof and a flag indicating whether finality is required. Read more

Add Client which can be used for sealing, potentially querying the state and sending messages.

Register an account which signs consensus messages.

Sign using the EngineSigner, to be used for consensus tx signing.

Create a factory for building snapshot chunks and restoring from them. Returning None indicates that this engine doesn't support snapshot creation. Read more

Check whether the given new block is the best block, after finalization check.

The number of generations back that uncles can be.

Phase 2 verification. Perform costly checks such as transaction signatures. Returns either a null Ok or a general error detailing the problem with import.

Find out if the block is a proposal block and should not be inserted into the DB. Takes a header of a fully verified block. Read more

Stops any services that the may hold the Engine and makes it safe to drop.

Whether this engine supports warp sync.

Return a new open block header timestamp based on the parent timestamp.

Check whether the parent timestamp is valid.

Important traits for Vec<u8>

Gather all ancestry actions. Called at the last stage when a block is committed. The Engine must guarantee that the ancestry exists. Read more

Auto Trait Implementations

impl Send for AuthorityRound

impl Sync for AuthorityRound