pub type ReplayTransactionResult = Result<(TraceResults, TxHash), (Error, TxHash)>;
Expand description
Type alias representing the result of replaying a transaction.
Aliased Type§
pub enum ReplayTransactionResult {
Ok((TraceResults, FixedBytes<32>)),
Err((Error, FixedBytes<32>)),
}
Variants§
Ok((TraceResults, 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.