Skip to content

Commit

Permalink
rustmft
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Nov 18, 2024
1 parent 7f41069 commit 4a0cdad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions crates/primitives-traits/src/receipt.rs
Original file line number Diff line number Diff line change
@@ -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 {}
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives-traits/src/transaction/signed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Transaction: FullTransaction> + Compact {}
Expand Down

0 comments on commit 4a0cdad

Please sign in to comment.