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
ProposerInterface.
Aliased Type§
struct ProposalOf<B> {
pub block: B,
pub proof: StorageProof,
pub storage_changes: StorageChanges<<<B as Block>::Header as Header>::Hashing>,
}Fields§
§block: BThe block that was build.
proof: StorageProofProof that was recorded while building the block.
storage_changes: StorageChanges<<<B as Block>::Header as Header>::Hashing>The storage changes while building this block.