pub type BlockHash<Types> = Commitment<Header<Types>>;
Expand description
A block hash is the hash of the block header.
A block consists of a header and a payload. But the header itself contains a commitment to the payload, so we can commit to the entire block simply by hashing the header.
Aliased Typeยง
struct BlockHash<Types>(/* private fields */);