Skip to content

Commit

Permalink
Fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
emhane committed Nov 14, 2024
1 parent ab284eb commit a35ced3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/primitives-traits/src/block/body.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Block body abstraction.
use alloc::fmt;
use alloc::{fmt, vec::Vec};

use alloy_eips::{eip4895::Withdrawal, eip7685::Requests};
use alloy_primitives::{Address, B256};
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives-traits/src/block/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pub mod body;
pub mod header;

use alloc::fmt;
use alloc::{fmt, vec::Vec};

use alloy_consensus::BlockHeader as _;
use alloy_eips::eip7685::Requests;
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
@@ -1,6 +1,6 @@
//! API of a signed transaction.
use alloc::fmt;
use alloc::{fmt, vec::Vec};
use core::hash::Hash;
#[cfg(feature = "std")]
use std::sync::LazyLock;
Expand Down

0 comments on commit a35ced3

Please sign in to comment.