pub trait TransactionInfo {
    fn transaction_block(&self, id: TransactionId) -> Option<H256>;
}
Expand description

Provides various information on a transaction by it’s ID

Required methods

Get the hash of block that contains the transaction, if any.

Implementors