From 220d3d0e71ad9b608a8819b880b7e9f8b059b1a2 Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Mon, 28 Aug 2023 16:16:51 +0300 Subject: [PATCH] chainSpec/api: Remove unstable documentation Signed-off-by: Alexandru Vasile --- substrate/client/rpc-spec-v2/src/chain_spec/api.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/substrate/client/rpc-spec-v2/src/chain_spec/api.rs b/substrate/client/rpc-spec-v2/src/chain_spec/api.rs index 746132f17ec4..b12ba6791d7b 100644 --- a/substrate/client/rpc-spec-v2/src/chain_spec/api.rs +++ b/substrate/client/rpc-spec-v2/src/chain_spec/api.rs @@ -24,18 +24,10 @@ use sc_chain_spec::Properties; #[rpc(client, server)] pub trait ChainSpecApi { /// Get the chain name, as present in the chain specification. - /// - /// # Unstable - /// - /// This method is unstable and subject to change in the future. #[method(name = "chainSpec_v1_chainName")] fn chain_spec_v1_chain_name(&self) -> RpcResult; /// Get the chain's genesis hash. - /// - /// # Unstable - /// - /// This method is unstable and subject to change in the future. #[method(name = "chainSpec_v1_genesisHash")] fn chain_spec_v1_genesis_hash(&self) -> RpcResult; @@ -44,10 +36,6 @@ pub trait ChainSpecApi { /// # Note /// /// The json whitespaces are not guaranteed to persist. - /// - /// # Unstable - /// - /// This method is unstable and subject to change in the future. #[method(name = "chainSpec_v1_properties")] fn chain_spec_v1_properties(&self) -> RpcResult; }