Skip to content

Commit

Permalink
Revert "make get_system_account_next_index available for no_std (#594)"
Browse files Browse the repository at this point in the history
This reverts commit b6a998e.
  • Loading branch information
clangenb committed Sep 15, 2023
1 parent 4eb31ff commit e4ed74b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/api/rpc_api/frame_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ 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,
Expand Down Expand Up @@ -58,6 +60,8 @@ 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,
Expand Down

0 comments on commit e4ed74b

Please sign in to comment.