TraceBlockResult

Type Alias TraceBlockResult 

Source
pub type TraceBlockResult = Result<(Vec<LocalizedTransactionTrace>, BlockId), (Error, BlockId)>;
Expand description

A result type for the trace_block method that also captures the requested block.

Aliased Type§

pub enum TraceBlockResult {
    Ok((Vec<LocalizedTransactionTrace>, BlockId)),
    Err((Error, BlockId)),
}

Variants§

§1.0.0

Ok((Vec<LocalizedTransactionTrace>, BlockId))

Contains the success value

§1.0.0

Err((Error, BlockId))

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.