mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-24 07:45:49 +00:00
More exampels and ensure light client things work. Remove unstable from unstable-light-client
This commit is contained in:
+1
-1
@@ -18,7 +18,7 @@ keywords = ["parity", "subxt", "rpcs"]
|
||||
default = ["jsonrpsee", "native"]
|
||||
jsonrpsee = ["dep:jsonrpsee", "dep:tokio-util"]
|
||||
|
||||
unstable-light-client = [
|
||||
light-client = [
|
||||
"dep:subxt-lightclient"
|
||||
]
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
//! which implement [`RpcClientT`] and can therefore be used to construct [`RpcClient`]s.
|
||||
//!
|
||||
//! - **jsonrpsee**: Enable an RPC client based on `jsonrpsee`.
|
||||
//! - **unstable-light-client**: Enable an RPC client which uses the Smoldot light client under
|
||||
//! - **light-client**: Enable an RPC client which uses the Smoldot light client under
|
||||
//! the hood to communicate with the network of choice.
|
||||
//! - **reconnecting-rpc-client**: Enable an RPC client based on `jsonrpsee` which handles
|
||||
//! reconnecting automatically in the event of network issues.
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ macro_rules! cfg_feature {
|
||||
|
||||
macro_rules! cfg_unstable_light_client {
|
||||
($($item:item)*) => {
|
||||
crate::macros::cfg_feature!("unstable-light-client", $($item)*);
|
||||
crate::macros::cfg_feature!("light-client", $($item)*);
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user