Trait ethcore_miner::pool::PoolVerifiedTransaction
source · [−]pub trait PoolVerifiedTransaction: Debug {
type Hash: Debug + LowerHex + Eq + Clone + Hash;
type Sender: Debug + Eq + Clone + Hash + Send;
fn hash(&self) -> &Self::Hash;
fn mem_usage(&self) -> usize;
fn sender(&self) -> &Self::Sender;
fn has_zero_gas_price(&self) -> bool;
}
Expand description
Already verified transaction that can be safely queued.
Associated Types
Required methods
fn has_zero_gas_price(&self) -> bool
fn has_zero_gas_price(&self) -> bool
Does it have zero gas price?