pub type TraceResult = TraceResult<GethTrace, String>;
Expand description
Result type for geth style transaction trace
Aliased Type§
enum TraceResult {
Success {
result: GethTrace,
tx_hash: Option<FixedBytes<32>>,
},
Error {
error: String,
tx_hash: Option<FixedBytes<32>>,
},
}