Skip to content

Commit 136c5d8

Browse files
committed
More format fix
1 parent f58274c commit 136c5d8

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

crates/node/src/kitchensink.rs

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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-
1410
use 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

2423
use revive_dt_config::Arguments;
2524
use 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

Comments
 (0)