From c0cac7591d3292213ca0ecc21c5c6f5bd476dd8d Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 17 Jul 2022 17:18:56 -0400 Subject: [PATCH] Correct a missing fmt --- substrate/node/src/rpc.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/substrate/node/src/rpc.rs b/substrate/node/src/rpc.rs index f76168c1..dd205a94 100644 --- a/substrate/node/src/rpc.rs +++ b/substrate/node/src/rpc.rs @@ -29,10 +29,10 @@ pub fn create_full< deps: FullDeps, ) -> Result, Box> where - C::Api: substrate_frame_rpc_system::AccountNonceApi + - pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + - pallet_contracts_rpc::ContractsRuntimeApi + - BlockBuilder, + C::Api: substrate_frame_rpc_system::AccountNonceApi + + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + + pallet_contracts_rpc::ContractsRuntimeApi + + BlockBuilder, { use substrate_frame_rpc_system::{System, SystemApiServer}; use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer};