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§
pub enum TraceTransactionResult {
Ok((Value, FixedBytes<32>)),
Err((Error, FixedBytes<32>)),
}
Variants§
Ok((Value, FixedBytes<32>))
Contains the success value
Err((Error, FixedBytes<32>))
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.