From 81160fda3dccfd882c23a8af82a22b8172a58352 Mon Sep 17 00:00:00 2001 From: Francesco Date: Tue, 2 Jul 2024 13:16:48 +0200 Subject: [PATCH] fix bitfinity tests --- Cargo.lock | 2 ++ bin/reth/Cargo.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index bfa14fe3f7a2..979ccc7383da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7258,12 +7258,14 @@ dependencies = [ "fdlimit", "futures", "itertools 0.13.0", + "jsonrpsee", "libc", "lightspeed_scheduler", "metrics-process", "parking_lot 0.12.3", "proptest", "proptest-arbitrary-interop", + "rand 0.8.5", "reth-basic-payload-builder", "reth-beacon-consensus", "reth-blockchain-tree", diff --git a/bin/reth/Cargo.toml b/bin/reth/Cargo.toml index b92b5d11796f..caf21dd0c74e 100644 --- a/bin/reth/Cargo.toml +++ b/bin/reth/Cargo.toml @@ -133,7 +133,9 @@ reth-discv4.workspace = true # bitfinity dev dependencies dirs.workspace = true +jsonrpsee = { workspace = true } parking_lot = { workspace = true } +rand = { workspace = true } reth-primitives = { workspace = true, features = ["test-utils"] } reth-trie = { workspace = true, features = ["test-utils"] } revm-primitives.workspace = true