pub struct SubmitWindowedPoStParams {
    pub deadline: usize,
    pub partitions: Vec<PoStPartition>,
    pub proofs: Vec<PoStProof>,
    pub chain_commit_epoch: ChainEpoch,
    pub chain_commit_rand: Randomness,
}
Expand description

Information submitted by a miner to provide a Window PoSt.

Fields

deadline: usize

The deadline index which the submission targets.

partitions: Vec<PoStPartition>

The partitions being proven.

proofs: Vec<PoStProof>

Array of proofs, one per distinct registered proof type present in the sectors being proven. In the usual case of a single proof type, this array will always have a single element (independent of number of partitions).

chain_commit_epoch: ChainEpoch

The epoch at which these proofs is being committed to a particular chain.

chain_commit_rand: Randomness

The ticket randomness on the chain at the chain_commit_epoch on the chain this post is committed to.

Trait Implementations

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.