Skip to content

Commit d3167db

Browse files
authored
chore(cli): remove redundant eth_rpc_url insert from EvmArgs::data (#12701)
1 parent f3c96f1 commit d3167db

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

crates/cli/src/opts/evm.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,10 +177,6 @@ impl Provider for EvmArgs {
177177
dict.insert("no_rpc_rate_limit".to_string(), self.no_rpc_rate_limit.into());
178178
}
179179

180-
if let Some(fork_url) = &self.fork_url {
181-
dict.insert("eth_rpc_url".to_string(), fork_url.clone().into());
182-
}
183-
184180
Ok(Map::from([(Config::selected_profile(), dict)]))
185181
}
186182
}

0 commit comments

Comments
 (0)