From 6075dfdee4775e187d99e6b4372ac5f799e93743 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Tue, 14 Oct 2025 19:50:45 +0300 Subject: [PATCH] Rename the commandline argument --- crates/config/src/lib.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/config/src/lib.rs b/crates/config/src/lib.rs index 08d4c9f..c65d756 100644 --- a/crates/config/src/lib.rs +++ b/crates/config/src/lib.rs @@ -825,10 +825,7 @@ pub struct EthRpcConfiguration { /// Thus, if you want all of the transactions and tests to happen against the node that you /// spawned and manage then you need to specify a `ConcurrencyConfiguration.number_of_nodes` of /// 1. - #[clap( - id = "revive-dev-node.existing-rpc-url", - long = "revive-dev-node.existing-rpc-url" - )] + #[clap(id = "eth-rpc.existing-rpc-url", long = "eth-rpc.existing-rpc-url")] pub existing_rpc_url: Vec, }