usealloy_primitives::B256;/// Additional fields in the context of a block that contains an included transaction.
#[derive(Debug, Clone, Default, Eq, PartialEq)]pubstructInclusionInfo{/// The hash of the block.
pubblock_hash: B256,
/// The block number.
pubblock_number:u64,
/// The index of the transaction in the block.
pubtransaction_index:u64,
}