use alloy::primitives::BlockNumber;
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct TxLocation {
pub block: BlockNumber,
pub index: u64,
}
impl TxLocation {
pub const fn new(block: BlockNumber, index: u64) -> Self {
Self { block, index }
}
}