[][src]Struct grin_core::core::block::BlockHeader

pub struct BlockHeader {
    pub version: HeaderVersion,
    pub height: u64,
    pub prev_hash: Hash,
    pub prev_root: Hash,
    pub timestamp: DateTime<Utc>,
    pub output_root: Hash,
    pub range_proof_root: Hash,
    pub kernel_root: Hash,
    pub total_kernel_offset: BlindingFactor,
    pub output_mmr_size: u64,
    pub kernel_mmr_size: u64,
    pub pow: ProofOfWork,
}

Block header, fairly standard compared to other blockchains.

Fields

version: HeaderVersion

Version of the block

height: u64

Height of this block since the genesis block (height 0)

prev_hash: Hash

Hash of the block previous to this in the chain.

prev_root: Hash

Root hash of the header MMR at the previous header.

timestamp: DateTime<Utc>

Timestamp at which the block was built.

output_root: Hash

Merklish root of all the commitments in the TxHashSet

range_proof_root: Hash

Merklish root of all range proofs in the TxHashSet

kernel_root: Hash

Merklish root of all transaction kernels in the TxHashSet

total_kernel_offset: BlindingFactor

Total accumulated sum of kernel offsets since genesis block. We can derive the kernel offset sum for this block from the total kernel offset of the previous block header.

output_mmr_size: u64

Total size of the output MMR after applying this block

kernel_mmr_size: u64

Total size of the kernel MMR after applying this block

pow: ProofOfWork

Proof of work and related

Methods

impl BlockHeader[src]

pub fn write_pre_pow<W: Writer>(&self, writer: &mut W) -> Result<(), Error>[src]

Write the pre-hash portion of the header

pub fn pre_pow(&self) -> Vec<u8>[src]

Return the pre-pow, unhashed Let the cuck(at)oo miner/verifier handle the hashing for consistency with how this call is performed everywhere else

pub fn total_difficulty(&self) -> Difficulty[src]

Total difficulty accumulated by the proof of work on this header

pub fn overage(&self) -> i64[src]

The "overage" to use when verifying the kernel sums. For a block header the overage is 0 - reward.

pub fn total_overage(&self, genesis_had_reward: bool) -> i64[src]

The "total overage" to use when verifying the kernel sums for a full chain state. For a full chain state this is 0 - (height * reward).

pub fn total_kernel_offset(&self) -> BlindingFactor[src]

Total kernel offset for the chain state up to and including this block.

Trait Implementations

impl DefaultHashable for BlockHeader[src]

impl Writeable for BlockHeader[src]

Serialization of a block header

impl Readable for BlockHeader[src]

Deserialization of a block header

impl PMMRable for BlockHeader[src]

type E = HeaderEntry

The type of element actually stored in the MMR data file. This allows us to store Hash elements in the header MMR for variable size BlockHeaders. Read more

impl Clone for BlockHeader[src]

impl Default for BlockHeader[src]

impl PartialEq<BlockHeader> for BlockHeader[src]

impl Debug for BlockHeader[src]

impl Serialize for BlockHeader[src]

Auto Trait Implementations

Blanket Implementations

impl<D> Hashed for D where
    D: DefaultHashable
[src]

impl<H> ShortIdentifiable for H where
    H: Hashed
[src]

fn short_id(&Self, &Hash, u64) -> ShortId[src]

Generate a short_id via the following -

  • extract k0/k1 from block_hash hashed with the nonce (first two u64 values) * initialize a siphasher24 with k0/k1
    • self.hash() passing in the siphasher24 instance
    • drop the 2 most significant bytes (to return a 6 byte short_id)

impl<T> PMMRIndexHashable for T where
    T: DefaultHashable
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> UnsafeAny for T where
    T: Any

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T