@@ -61,7 +61,7 @@ use std::{collections::BTreeMap, sync::Mutex};
6161use substrate_prometheus_endpoint:: Registry ;
6262
6363pub ( crate ) mod evm;
64- use crate :: { chain_spec, rpc , cli } ;
64+ use crate :: { chain_spec, cli , rpc } ;
6565
6666type ParachainClient = TFullClient <
6767 Block ,
@@ -110,13 +110,11 @@ impl TransactionDetailProvider for TxDetailProvider {
110110 None
111111 }
112112 }
113- _ => {
114- Some ( TransactionDetail {
115- module : call_metadata. pallet_name ,
116- extrinsic : call_metadata. function_name ,
117- transaction_data : None ,
118- } )
119- }
113+ _ => Some ( TransactionDetail {
114+ module : call_metadata. pallet_name ,
115+ extrinsic : call_metadata. function_name ,
116+ transaction_data : None ,
117+ } ) ,
120118 }
121119 }
122120}
@@ -177,7 +175,7 @@ pub fn new_partial(
177175 } else {
178176 Some ( include_str ! ( "./tx_priority.json" ) )
179177 } ;
180-
178+
181179 let ( client, backend, keystore_container, task_manager) =
182180 sc_service:: new_full_parts_record_import :: < Block , RuntimeApi , _ > (
183181 config,
0 commit comments