Type Alias cumulus_client_consensus_proposer::ProposalOf
source · pub type ProposalOf<B> = Proposal<B, StorageProof>;
Expand description
A type alias for easily referring to the type of a proposal produced by a specific
Proposer
.
Aliased Type§
struct ProposalOf<B> {
pub block: B,
pub proof: StorageProof,
pub storage_changes: StorageChanges<<<B as Block>::Header as Header>::Hashing>,
}
Fields§
§block: B
The block that was build.
proof: StorageProof
Proof that was recorded while building the block.
storage_changes: StorageChanges<<<B as Block>::Header as Header>::Hashing>
The storage changes while building this block.