Type Alias BlockNumber

Source
pub type BlockNumber = NumberOrHex;
Expand description

A block number

Aliased Type§

enum BlockNumber {
    Number(u64),
    Hex(U256),
}

Variants§

§

Number(u64)

The number represented directly.

§

Hex(U256)

Hex representation of the number.