Skip to content

Commit

Permalink
suppress compiler warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele committed Oct 25, 2024
1 parent 9b65df4 commit 3898d19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/consensus/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![cfg_attr(all(not(test), not(feature = "std")), no_std)]
extern crate alloc;

#[allow(unused_imports)]
mod internal_prelude {
pub use alloc::string::{String, ToString};
pub use alloc::vec;
Expand Down
1 change: 1 addition & 0 deletions crates/light-client-verifier/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

#[allow(unused_imports)]
mod internal_prelude {
pub use alloc::boxed::Box;
pub use alloc::format;
Expand Down
1 change: 1 addition & 0 deletions crates/light-client-verifier/src/updates/capella.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pub use super::bellatrix::ExecutionUpdateInfo;
use super::{ConsensusUpdate, LightClientBootstrap};
#[allow(unused_imports)]
use crate::internal_prelude::*;
use core::ops::Deref;
use ethereum_consensus::{
Expand Down

0 comments on commit 3898d19

Please sign in to comment.