TraceGetResult

Type Alias TraceGetResult 

Source
pub type TraceGetResult = Result<(Option<LocalizedTransactionTrace>, B256, Vec<Index>), (Error, B256, Vec<Index>)>;
Expand description

Result type for the trace_get method that also captures the requested transaction hash and index.

Aliased Type§

pub enum TraceGetResult {
    Ok((Option<LocalizedTransactionTrace>, FixedBytes<32>, Vec<Index>)),
    Err((Error, FixedBytes<32>, Vec<Index>)),
}

Variants§

§1.0.0

Ok((Option<LocalizedTransactionTrace>, FixedBytes<32>, Vec<Index>))

Contains the success value

§1.0.0

Err((Error, FixedBytes<32>, Vec<Index>))

Contains the error value

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.