@@ -8,10 +8,10 @@ use std::process::Stdio;
88use std:: time:: Duration ;
99
1010use app_core:: application:: { WalletApp , WalletConfig } ;
11- use sequencer_core:: application:: Application ;
1211use app_core:: wallet_snapshot;
1312use rollups_harness:: ManagedSequencer ;
1413use rollups_harness:: paths;
14+ use sequencer_core:: application:: Application ;
1515use tokio:: io:: { AsyncReadExt , AsyncWriteExt } ;
1616use tokio:: net:: TcpStream ;
1717use tokio:: process:: Command ;
@@ -160,11 +160,20 @@ fn compare_env(
160160 lua_deps : & Path ,
161161) -> Vec < ( String , String ) > {
162162 vec ! [
163- ( "WATCHDOG_LUA_DEPS" . into( ) , lua_deps. to_string_lossy( ) . into_owned( ) ) ,
163+ (
164+ "WATCHDOG_LUA_DEPS" . into( ) ,
165+ lua_deps. to_string_lossy( ) . into_owned( ) ,
166+ ) ,
164167 ( "WATCHDOG_MODE" . into( ) , "compare" . into( ) ) ,
165168 ( "WATCHDOG_ONCE" . into( ) , "1" . into( ) ) ,
166- ( "WATCHDOG_SEQUENCER_URL" . into( ) , runtime. endpoint( ) . to_string( ) ) ,
167- ( "WATCHDOG_L1_RPC_URL" . into( ) , runtime. l1_endpoint( ) . to_string( ) ) ,
169+ (
170+ "WATCHDOG_SEQUENCER_URL" . into( ) ,
171+ runtime. endpoint( ) . to_string( ) ,
172+ ) ,
173+ (
174+ "WATCHDOG_L1_RPC_URL" . into( ) ,
175+ runtime. l1_endpoint( ) . to_string( ) ,
176+ ) ,
168177 (
169178 "WATCHDOG_INPUTBOX_ADDRESS" . into( ) ,
170179 runtime. input_box_address( ) . to_string( ) ,
0 commit comments