diff --git a/crates/primitives-traits/src/receipt.rs b/crates/primitives-traits/src/receipt.rs index b04658ee02646..64839ecb8b4be 100644 --- a/crates/primitives-traits/src/receipt.rs +++ b/crates/primitives-traits/src/receipt.rs @@ -1,12 +1,11 @@ //! Receipt abstraction +use crate::{InMemorySize, MaybeSerde}; use alloc::vec::Vec; -use core::fmt; use alloy_consensus::TxReceipt; use alloy_primitives::B256; +use core::fmt; use reth_codecs::Compact; -use crate::MaybeSerde; -use crate::InMemorySize; /// Helper trait that unifies all behaviour required by receipt to support full node operations. pub trait FullReceipt: Receipt + Compact {} diff --git a/crates/primitives-traits/src/transaction/signed.rs b/crates/primitives-traits/src/transaction/signed.rs index 804bf255831de..d860dbb92fca8 100644 --- a/crates/primitives-traits/src/transaction/signed.rs +++ b/crates/primitives-traits/src/transaction/signed.rs @@ -8,7 +8,7 @@ use alloy_primitives::{keccak256, Address, PrimitiveSignature, TxHash, B256}; use reth_codecs::Compact; use revm_primitives::TxEnv; -use crate::{FullTransaction, InMemorySize, MaybeSerde, MaybeArbitrary, Transaction}; +use crate::{FullTransaction, InMemorySize, MaybeArbitrary, MaybeSerde, Transaction}; /// Helper trait that unifies all behaviour required by block to support full node operations. pub trait FullSignedTx: SignedTransaction + Compact {}