pub type TraceTransactionResult = Result<(Value, TxHash), (Error, TxHash)>;
Expand description

A result type for the debug_trace_transaction method that also captures the requested hash.

Aliased Type§

enum TraceTransactionResult {
    Ok((Value, FixedBytes<32>)),
    Err((Error, FixedBytes<32>)),
}

Variants§

§1.0.0

Ok((Value, FixedBytes<32>))

Contains the success value

§1.0.0

Err((Error, FixedBytes<32>))

Contains the error value

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 88 bytes

Size for each variant:

  • Ok: 72 bytes
  • Err: 88 bytes