//! Typed Ethereum transaction receipt.
usealloy::consensus::{Receipt as AlloyReceipt, TxType};/// Typed ethereum transaction receipt.
////// Receipt containing the result of transaction execution, paired with the
/// transaction type discriminant.
#[derive(Clone, Debug, PartialEq, Eq, Default)]pubstructReceipt{/// Receipt type.
pubtx_type: TxType,
/// The actual receipt data.
pubinner: AlloyReceipt,
}