Correct a missing fmt

This commit is contained in:
Luke Parker 2022-07-17 17:18:56 -04:00
parent 9cb2d8aa4a
commit c0cac7591d
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6

View file

@ -29,10 +29,10 @@ pub fn create_full<
deps: FullDeps<C, P>, deps: FullDeps<C, P>,
) -> Result<RpcModule<()>, Box<dyn std::error::Error + Send + Sync>> ) -> Result<RpcModule<()>, Box<dyn std::error::Error + Send + Sync>>
where where
C::Api: substrate_frame_rpc_system::AccountNonceApi<Block, AccountId, Index> + C::Api: substrate_frame_rpc_system::AccountNonceApi<Block, AccountId, Index>
pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi<Block, Balance> + + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi<Block, Balance>
pallet_contracts_rpc::ContractsRuntimeApi<Block, AccountId, Balance, BlockNumber, Hash> + + pallet_contracts_rpc::ContractsRuntimeApi<Block, AccountId, Balance, BlockNumber, Hash>
BlockBuilder<Block>, + BlockBuilder<Block>,
{ {
use substrate_frame_rpc_system::{System, SystemApiServer}; use substrate_frame_rpc_system::{System, SystemApiServer};
use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer}; use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer};