pub trait Transaction {
    fn gas_required(&self, schedule: &Schedule) -> u64;
}
Expand description

Extends transaction with gas verification method.

Required methods

Get the transaction cost in gas for this transaction.

Implementations on Foreign Types

Implementors