From d5cfb3fb255967ed053affb912e1c6d9bcbbe67c Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Tue, 18 Jul 2023 23:52:37 -0400 Subject: [PATCH] Corrections from renaming Index to Nonce --- substrate/node/src/rpc.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/substrate/node/src/rpc.rs b/substrate/node/src/rpc.rs index e0a6c16c..326b3bd9 100644 --- a/substrate/node/src/rpc.rs +++ b/substrate/node/src/rpc.rs @@ -9,7 +9,7 @@ use sp_api::ProvideRuntimeApi; use serai_runtime::{ primitives::{SubstrateAmount, PublicKey}, opaque::Block, - Index, + Nonce, }; pub use sc_rpc_api::DenyUnsafe; @@ -33,7 +33,7 @@ pub fn create_full< deps: FullDeps, ) -> Result, Box> where - C::Api: substrate_frame_rpc_system::AccountNonceApi + C::Api: substrate_frame_rpc_system::AccountNonceApi + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + BlockBuilder, {