Struct ethcore::receipt::LocalizedReceipt [] [src]

pub struct LocalizedReceipt {
    pub transaction_hash: H256,
    pub transaction_index: usize,
    pub block_hash: H256,
    pub block_number: BlockNumber,
    pub cumulative_gas_used: U256,
    pub gas_used: U256,
    pub contract_address: Option<Address>,
    pub logs: Vec<LocalizedLogEntry>,
    pub log_bloom: H2048,
    pub state_root: Option<H256>,
}

Receipt with additional info.

Fields

Transaction hash.

Transaction index.

Block hash.

Block number.

The total gas used in the block following execution of the transaction.

The gas used in the execution of the transaction. Note the difference of meaning to Receipt::gas_used.

Contract address.

Logs

Logs bloom

State root

Trait Implementations

impl Debug for LocalizedReceipt
[src]

Formats the value using the given formatter.

impl Clone for LocalizedReceipt
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LocalizedReceipt
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.