reth_primitives/transaction/tx_type.rs
1/// Transaction Type
2///
3/// Currently being used as 2-bit type when encoding it to `reth_codecs::Compact` on
4/// [`crate::TransactionSigned`]. Adding more transaction types will break the codec and
5/// database format.
6///
7/// Other required changes when adding a new type can be seen on [PR#3953](https://github.com/paradigmxyz/reth/pull/3953/files).
8pub use alloy_consensus::TxType;