fix(lint): lint warnings trie tests (#11012)

This commit is contained in:
Emilia Hane
2024-09-19 13:22:48 +02:00
committed by GitHub
parent 9246eac3b0
commit 4674bfdcb1
5 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#![allow(missing_docs)]
use alloy_primitives::{B256, U256};
use proptest::prelude::*;
use reth_db::{

View File

@ -1,3 +1,5 @@
#![allow(missing_docs)]
use alloy_primitives::{B256, U256};
use proptest::prelude::*;
use proptest_arbitrary_interop::arb;

View File

@ -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};

View File

@ -1,3 +1,5 @@
#![allow(missing_docs)]
use alloy_primitives::{keccak256, Address, B256, U256};
use proptest::{prelude::ProptestConfig, proptest};
use proptest_arbitrary_interop::arb;

View File

@ -1,3 +1,5 @@
#![allow(missing_docs)]
use alloy_primitives::B256;
use reth_db::tables;
use reth_db_api::{cursor::DbCursorRW, transaction::DbTxMut};