Simplify examples imports for beacon-api-sse (#15549)

This commit is contained in:
Soubhik Singha Mahapatra
2025-04-05 12:09:33 +05:30
committed by GitHub
parent 19f8070565
commit b8b75da068
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -3325,7 +3325,7 @@ dependencies = [
"futures-util",
"mev-share-sse",
"reth",
"reth-node-ethereum",
"reth-ethereum",
"tokio",
"tracing",
]

View File

@@ -7,7 +7,7 @@ license.workspace = true
[dependencies]
reth.workspace = true
reth-node-ethereum.workspace = true
reth-ethereum = { workspace = true, features = ["node"] }
alloy-rpc-types-beacon.workspace = true

View File

@@ -22,7 +22,7 @@ use clap::Parser;
use futures_util::stream::StreamExt;
use mev_share_sse::{client::EventStream, EventClient};
use reth::{chainspec::EthereumChainSpecParser, cli::Cli};
use reth_node_ethereum::EthereumNode;
use reth_ethereum::node::EthereumNode;
use std::net::{IpAddr, Ipv4Addr};
use tracing::{info, warn};