mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(sdk): move reth_primitives_traits::TxType into transaction module (#12722)
This commit is contained in:
@ -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"))]
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
|
||||
pub mod execute;
|
||||
pub mod signed;
|
||||
pub mod tx_type;
|
||||
|
||||
use core::{fmt, hash::Hash};
|
||||
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
//! Abstraction of transaction envelope type ID.
|
||||
|
||||
use core::fmt;
|
||||
|
||||
use alloy_primitives::{U64, U8};
|
||||
Reference in New Issue
Block a user