Skip to content

Commit

Permalink
Merge branch 'emhane/signed-tx-trait' into emhane/op-signed-tx
Browse files Browse the repository at this point in the history
  • Loading branch information
emhane committed Oct 2, 2024
2 parents a26253c + d7b0242 commit e31e301
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion crates/optimism/primitives/src/signed_transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ use alloy_rlp::{Buf, Decodable as _, Header};
use derive_more::{AsRef, Deref};
use reth_primitives::{
optimism_deposit_tx_signature,
traits::SignedTransaction,
transaction::{recover_signer, recover_signer_unchecked, with_eip155_parity},
SignedTransaction, Transaction, TxDeposit, TxType,
Transaction, TxDeposit, TxType,
};
use serde::{Deserialize, Serialize};

Expand Down
4 changes: 2 additions & 2 deletions crates/primitives/src/traits/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
//! Abstractions of primitive data types

pub mod block;
pub mod signed;
pub mod transaction;

pub use signed::SignedTransaction;
pub use transaction::signed::SignedTransaction;
pub use block::{body::BlockBody, Block};

pub use alloy_consensus::BlockHeader;

0 comments on commit e31e301

Please sign in to comment.