Struct private_tx::VerifiedPrivateTransaction[][src]

pub struct VerifiedPrivateTransaction {
    pub private_transaction: PrivateTransaction,
    pub validator_account: Option<Address>,
    pub transaction: SignedTransaction,
    pub transaction_hash: H256,
    pub transaction_sender: Address,
}

Private transaction stored in queue for verification

Fields

private_transaction: PrivateTransaction

Original private transaction

validator_account: Option<Address>

Address that should be used for verification

transaction: SignedTransaction

Resulting verified transaction

transaction_hash: H256

Original transaction hash

transaction_sender: Address

Original transaction sender

Trait Implementations

impl Clone for VerifiedPrivateTransaction[src]

impl Debug for VerifiedPrivateTransaction[src]

impl Eq for VerifiedPrivateTransaction[src]

impl PartialEq<VerifiedPrivateTransaction> for VerifiedPrivateTransaction[src]

impl ScoredTransaction for VerifiedPrivateTransaction[src]

fn gas_price(&self) -> &U256[src]

Gets transaction gas price.

fn nonce(&self) -> U256[src]

Gets transaction nonce.

impl StructuralEq for VerifiedPrivateTransaction[src]

impl StructuralPartialEq for VerifiedPrivateTransaction[src]

impl VerifiedTransaction for VerifiedPrivateTransaction[src]

type Hash = H256

Transaction hash type.

type Sender = Address

Transaction sender type.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,