Trait parity_machine::Transactions[][src]

pub trait Transactions: LiveBlock {
    type Transaction;
    fn transactions(&self) -> &[Self::Transaction];
}

Trait for blocks which have a transaction type.

Associated Types

The transaction type.

Required Methods

Get a reference to the transactions in this block.

Implementors