@@ -55,7 +55,7 @@ async fn run() -> std::result::Result<(), CliError> {
5555 Commands :: Relay ( args) => {
5656 let config: pluto_relay_server:: config:: Config = ( * args) . clone ( ) . try_into ( ) ?;
5757 pluto_tracing:: init ( & config. log_config ) . expect ( "Failed to initialize tracing" ) ;
58- commands:: relay:: run ( config, ct. clone ( ) ) . await
58+ commands:: relay:: run ( config, ct) . await
5959 }
6060 Commands :: Alpha ( args) => match args. command {
6161 AlphaCommands :: Test ( args) => {
@@ -67,7 +67,7 @@ async fn run() -> std::result::Result<(), CliError> {
6767 TestCommands :: Beacon ( args) => {
6868 pluto_tracing:: init ( & pluto_tracing:: TracingConfig :: default ( ) )
6969 . expect ( "Failed to initialize tracing" ) ;
70- commands:: test:: beacon:: run ( args, & mut stdout, ct. clone ( ) )
70+ commands:: test:: beacon:: run ( args, & mut stdout, ct)
7171 . await
7272 . map ( |_| ( ) )
7373 }
@@ -76,7 +76,7 @@ async fn run() -> std::result::Result<(), CliError> {
7676 . await
7777 . map ( |_| ( ) )
7878 }
79- TestCommands :: Mev ( args) => commands:: test:: mev:: run ( args, & mut stdout, & ct)
79+ TestCommands :: Mev ( args) => commands:: test:: mev:: run ( args, & mut stdout, ct)
8080 . await
8181 . map ( |_| ( ) ) ,
8282 TestCommands :: Infra ( args) => commands:: test:: infra:: run ( args, & mut stdout)
0 commit comments