From c6160ab392f6da6f957d8722c5b5ca20afca4d8a Mon Sep 17 00:00:00 2001 From: Hai Nguyen Date: Thu, 21 Nov 2024 20:47:12 +0700 Subject: [PATCH] chore: remove an unneeded clone --- bin/odyssey/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/odyssey/src/main.rs b/bin/odyssey/src/main.rs index 1e05473..6030d53 100644 --- a/bin/odyssey/src/main.rs +++ b/bin/odyssey/src/main.rs @@ -54,7 +54,7 @@ fn main() { let node = builder .with_types_and_provider::>() .with_components(OdysseyNode::components(&rollup_args)) - .with_add_ons(OpAddOns::new(rollup_args.sequencer_http.clone())) + .with_add_ons(OpAddOns::new(rollup_args.sequencer_http)) .extend_rpc_modules(move |ctx| { // register odyssey wallet namespace if let Ok(sk) = std::env::var("EXP1_SK") {