diff --git a/crates/trie/db/tests/fuzz_in_memory_nodes.rs b/crates/trie/db/tests/fuzz_in_memory_nodes.rs index c0bea366b..e293b0caa 100644 --- a/crates/trie/db/tests/fuzz_in_memory_nodes.rs +++ b/crates/trie/db/tests/fuzz_in_memory_nodes.rs @@ -1,3 +1,5 @@ +#![allow(missing_docs)] + use alloy_primitives::{B256, U256}; use proptest::prelude::*; use reth_db::{ diff --git a/crates/trie/db/tests/post_state.rs b/crates/trie/db/tests/post_state.rs index be022b2da..ceadf7cde 100644 --- a/crates/trie/db/tests/post_state.rs +++ b/crates/trie/db/tests/post_state.rs @@ -1,3 +1,5 @@ +#![allow(missing_docs)] + use alloy_primitives::{B256, U256}; use proptest::prelude::*; use proptest_arbitrary_interop::arb; diff --git a/crates/trie/db/tests/proof.rs b/crates/trie/db/tests/proof.rs index 8a31512a7..33a19de38 100644 --- a/crates/trie/db/tests/proof.rs +++ b/crates/trie/db/tests/proof.rs @@ -1,3 +1,5 @@ +#![allow(missing_docs)] + use alloy_primitives::{keccak256, Address, Bytes, B256, U256}; use reth_chainspec::{Chain, ChainSpec, HOLESKY, MAINNET}; use reth_primitives::{constants::EMPTY_ROOT_HASH, Account}; diff --git a/crates/trie/db/tests/trie.rs b/crates/trie/db/tests/trie.rs index a6983dc4e..acbcb119c 100644 --- a/crates/trie/db/tests/trie.rs +++ b/crates/trie/db/tests/trie.rs @@ -1,3 +1,5 @@ +#![allow(missing_docs)] + use alloy_primitives::{keccak256, Address, B256, U256}; use proptest::{prelude::ProptestConfig, proptest}; use proptest_arbitrary_interop::arb; diff --git a/crates/trie/db/tests/walker.rs b/crates/trie/db/tests/walker.rs index f018d7f1a..dd4bcd6da 100644 --- a/crates/trie/db/tests/walker.rs +++ b/crates/trie/db/tests/walker.rs @@ -1,3 +1,5 @@ +#![allow(missing_docs)] + use alloy_primitives::B256; use reth_db::tables; use reth_db_api::{cursor::DbCursorRW, transaction::DbTxMut};