Trait ethcore::builtin::Pricer[][src]

pub trait Pricer: Send + Sync {
    fn cost(&self, input: &[u8]) -> U256;
}

A gas pricing scheme for built-in contracts.

Required Methods

The gas cost of running this built-in for the given input data.

Implementors