remove: remove unused main

This commit is contained in:
sprites0
2025-07-02 10:45:11 +00:00
parent 7fb5e8dd96
commit 2821034f95

View File

@ -1,16 +0,0 @@
use clap::Parser;
use reth_my_p2p::cli::PseudoPeerCommand;
#[tokio::main]
async fn main() -> eyre::Result<()> {
let cli = PseudoPeerCommand::parse();
cli.logs.init_tracing()?;
// Parse and create block source configuration
let block_source_config = cli.source.parse().await?;
let block_source = block_source_config.create_cached_block_source().await;
// Start the worker
reth_my_p2p::start_pseudo_peer(cli.destination_peer, block_source).await?;
Ok(())
}