[][src]Struct pexacoin::blockdata::block::BlockHeader

pub struct BlockHeader {
    pub version: u32,
    pub prev_blockhash: Hash,
    pub merkle_root: Hash,
    pub time: u32,
    pub bits: u32,
    pub nonce: u32,
}

A block header, which contains all the block's information except the actual transactions

Fields

version: u32

The protocol version. Should always be 1.

prev_blockhash: Hash

Reference to the previous block in the chain

merkle_root: Hash

The root hash of the merkle tree of transactions in the block

time: u32

The timestamp of the block, as claimed by the miner

bits: u32

The target value below which the blockhash must lie, encoded as a a float (with well-defined rounding, of course)

nonce: u32

The nonce, selected to obtain a low enough blockhash

Methods

impl BlockHeader[src]

pub fn target(&self) -> Uint256[src]

Computes the target [0, T] that a blockhash must land in to be valid

pub fn compact_target_from_u256(value: &Uint256) -> u32[src]

Computes the target value in float format from Uint256 format.

pub fn difficulty(&self, network: Network) -> u64[src]

Compute the popular "difficulty" measure for mining

pub fn validate_pow(&self, required_target: &Uint256) -> Result<(), Error>[src]

Checks that the proof-of-work for the block is valid.

pub fn work(&self) -> Uint256[src]

Returns the total work of the block

Trait Implementations

impl BitcoinHash for BlockHeader[src]

impl Encodable for BlockHeader[src]

impl Decodable for BlockHeader[src]

impl Eq for BlockHeader[src]

impl Clone for BlockHeader[src]

impl PartialEq<BlockHeader> for BlockHeader[src]

impl Copy for BlockHeader[src]

impl Debug for BlockHeader[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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