chore(sdk): move reth_primitives_traits::TxType into transaction module (#12722)

This commit is contained in:
Emilia Hane
2024-11-21 10:30:21 +01:00
committed by GitHub
parent 0c5984179e
commit 80268a1ce7
3 changed files with 4 additions and 4 deletions

View File

@ -28,6 +28,7 @@ pub mod transaction;
pub use transaction::{
execute::FillTxEnv,
signed::{FullSignedTx, SignedTransaction},
tx_type::{FullTxType, TxType},
FullTransaction, Transaction, TransactionExt,
};
@ -52,10 +53,6 @@ pub use alloy_primitives::{logs_bloom, Log, LogData};
mod storage;
pub use storage::StorageEntry;
/// Transaction types
pub mod tx_type;
pub use tx_type::{FullTxType, TxType};
/// Common header types
pub mod header;
#[cfg(any(test, feature = "arbitrary", feature = "test-utils"))]

View File

@ -2,6 +2,7 @@
pub mod execute;
pub mod signed;
pub mod tx_type;
use core::{fmt, hash::Hash};

View File

@ -1,3 +1,5 @@
//! Abstraction of transaction envelope type ID.
use core::fmt;
use alloy_primitives::{U64, U8};