@@ -7,10 +7,6 @@ use std::{
77 time:: Duration ,
88} ;
99
10- use serde_json:: { Value as JsonValue , json} ;
11- use sp_core:: crypto:: Ss58Codec ;
12- use sp_runtime:: AccountId32 ;
13-
1410use alloy:: {
1511 hex,
1612 network:: EthereumWallet ,
@@ -20,6 +16,9 @@ use alloy::{
2016 trace:: geth:: { DiffMode , GethDebugTracingOptions , PreStateConfig , PreStateFrame } ,
2117 } ,
2218} ;
19+ use serde_json:: { Value as JsonValue , json} ;
20+ use sp_core:: crypto:: Ss58Codec ;
21+ use sp_runtime:: AccountId32 ;
2322
2423use revive_dt_config:: Arguments ;
2524use revive_dt_node_interaction:: {
@@ -50,10 +49,8 @@ impl KitchensinkNode {
5049 const BASE_SUBSTRATE_RPC_PORT : u16 = 9944 ;
5150 const BASE_PROXY_RPC_PORT : u16 = 8545 ;
5251
53- const SUBSTRATE_LOG_ENV : & ' static str =
54- "error,evm=debug,sc_rpc_server=info,runtime::revive=debug" ;
55-
56- const PROXY_LOG_ENV : & ' static str = "info,eth-rpc=debug" ;
52+ const SUBSTRATE_LOG_ENV : & str = "error,evm=debug,sc_rpc_server=info,runtime::revive=debug" ;
53+ const PROXY_LOG_ENV : & str = "info,eth-rpc=debug" ;
5754
5855 fn init ( & mut self , genesis : & str ) -> anyhow:: Result < & mut Self > {
5956 create_dir_all ( & self . base_directory ) ?;
0 commit comments