mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: rm reth-interfaces from op blockchain tree (#8481)
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -6550,7 +6550,6 @@ dependencies = [
|
|||||||
"reth-evm",
|
"reth-evm",
|
||||||
"reth-evm-ethereum",
|
"reth-evm-ethereum",
|
||||||
"reth-execution-errors",
|
"reth-execution-errors",
|
||||||
"reth-interfaces",
|
|
||||||
"reth-metrics",
|
"reth-metrics",
|
||||||
"reth-network",
|
"reth-network",
|
||||||
"reth-primitives",
|
"reth-primitives",
|
||||||
@ -6558,6 +6557,7 @@ dependencies = [
|
|||||||
"reth-revm",
|
"reth-revm",
|
||||||
"reth-stages-api",
|
"reth-stages-api",
|
||||||
"reth-storage-errors",
|
"reth-storage-errors",
|
||||||
|
"reth-testing-utils",
|
||||||
"reth-trie",
|
"reth-trie",
|
||||||
"reth-trie-parallel",
|
"reth-trie-parallel",
|
||||||
"tokio",
|
"tokio",
|
||||||
|
|||||||
@ -23,7 +23,7 @@ reth-provider.workspace = true
|
|||||||
reth-stages-api.workspace = true
|
reth-stages-api.workspace = true
|
||||||
reth-trie = { workspace = true, features = ["metrics"] }
|
reth-trie = { workspace = true, features = ["metrics"] }
|
||||||
reth-trie-parallel = { workspace = true, features = ["parallel"] }
|
reth-trie-parallel = { workspace = true, features = ["parallel"] }
|
||||||
reth-network = { workspace = true }
|
reth-network.workspace = true
|
||||||
reth-consensus.workspace = true
|
reth-consensus.workspace = true
|
||||||
|
|
||||||
# common
|
# common
|
||||||
@ -41,10 +41,10 @@ linked_hash_set = "0.1.4"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
reth-db = { workspace = true, features = ["test-utils"] }
|
reth-db = { workspace = true, features = ["test-utils"] }
|
||||||
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
|
||||||
reth-primitives = { workspace = true , features = ["test-utils"] }
|
reth-primitives = { workspace = true , features = ["test-utils"] }
|
||||||
reth-provider = { workspace = true, features = ["test-utils"] }
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
||||||
reth-evm = { workspace = true, features = ["test-utils"] }
|
reth-evm = { workspace = true, features = ["test-utils"] }
|
||||||
|
reth-testing-utils.workspace = true
|
||||||
reth-revm.workspace = true
|
reth-revm.workspace = true
|
||||||
reth-evm-ethereum.workspace = true
|
reth-evm-ethereum.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
|
|||||||
@ -182,11 +182,11 @@ impl BlockBuffer {
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use crate::BlockBuffer;
|
use crate::BlockBuffer;
|
||||||
use reth_interfaces::test_utils::{
|
use reth_primitives::{BlockHash, BlockNumHash, SealedBlockWithSenders};
|
||||||
|
use reth_testing_utils::{
|
||||||
generators,
|
generators,
|
||||||
generators::{random_block, Rng},
|
generators::{random_block, Rng},
|
||||||
};
|
};
|
||||||
use reth_primitives::{BlockHash, BlockNumHash, SealedBlockWithSenders};
|
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
/// Create random block with specified number and parent hash.
|
/// Create random block with specified number and parent hash.
|
||||||
|
|||||||
Reference in New Issue
Block a user