chore: rm reth-interfaces from trie parallel (#8442)

This commit is contained in:
Matthias Seitz
2024-05-28 19:51:16 +02:00
committed by GitHub
parent 0232221717
commit 5dd1d88a47
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -8200,7 +8200,7 @@ dependencies = [
"rand 0.8.5",
"rayon",
"reth-db",
"reth-interfaces",
"reth-execution-errors",
"reth-metrics",
"reth-primitives",
"reth-provider",

View File

@ -16,7 +16,7 @@ workspace = true
reth-primitives.workspace = true
reth-db.workspace = true
reth-trie.workspace = true
reth-interfaces.workspace = true
reth-execution-errors.workspace = true
reth-provider.workspace = true
# alloy

View File

@ -2,7 +2,7 @@ use crate::{stats::ParallelTrieTracker, storage_root_targets::StorageRootTargets
use alloy_rlp::{BufMut, Encodable};
use itertools::Itertools;
use reth_db::database::Database;
use reth_interfaces::trie::StorageRootError;
use reth_execution_errors::StorageRootError;
use reth_primitives::{
trie::{HashBuilder, Nibbles, TrieAccount},
B256,

View File

@ -2,7 +2,7 @@ use crate::{stats::ParallelTrieTracker, storage_root_targets::StorageRootTargets
use alloy_rlp::{BufMut, Encodable};
use rayon::prelude::*;
use reth_db::database::Database;
use reth_interfaces::trie::StorageRootError;
use reth_execution_errors::StorageRootError;
use reth_primitives::{
trie::{HashBuilder, Nibbles, TrieAccount},
B256,