From b6a998e540729fd56a9c15590f60416c52718515 Mon Sep 17 00:00:00 2001 From: masapr <40862722+masapr@users.noreply.github.com> Date: Thu, 22 Jun 2023 09:51:48 +0200 Subject: [PATCH] make get_system_account_next_index available for no_std (#594) --- src/api/rpc_api/frame_system.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/api/rpc_api/frame_system.rs b/src/api/rpc_api/frame_system.rs index 9a8b21a59..e87b3510e 100644 --- a/src/api/rpc_api/frame_system.rs +++ b/src/api/rpc_api/frame_system.rs @@ -30,8 +30,6 @@ pub trait GetAccountInformation { type AccountData; /// Retrieves the next account index as available on the node. - // FIXME: Remove std feature #574 - #[cfg(feature = "std")] async fn get_system_account_next_index( &self, account_id: Self::AccountId, @@ -61,8 +59,6 @@ where type Index = T::Index; type AccountData = T::AccountData; - // FIXME: Remove std feature: #574 - #[cfg(feature = "std")] async fn get_system_account_next_index( &self, account_id: Self::AccountId,