diff options
author | hozan23 <hozan23@karyontech.net> | 2024-06-30 20:03:02 +0200 |
---|---|---|
committer | hozan23 <hozan23@karyontech.net> | 2024-06-30 20:03:02 +0200 |
commit | 3c55168b72c022b618822c7993b7692f583506db (patch) | |
tree | 146c03f6cc19956ec0acfb7ba26a6202cb5a9647 /jsonrpc/src/client | |
parent | 2ec4d4a3c3779dc016c8437891f825a54a805808 (diff) |
jsonrpc: remove redundant macro codes in the main crate and clean up
internal proc macros
Diffstat (limited to 'jsonrpc/src/client')
-rw-r--r-- | jsonrpc/src/client/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/jsonrpc/src/client/mod.rs b/jsonrpc/src/client/mod.rs index b54656b..360a094 100644 --- a/jsonrpc/src/client/mod.rs +++ b/jsonrpc/src/client/mod.rs @@ -180,6 +180,7 @@ impl Client { Ok(()) } + /// Initializes a new [`Client`] from the provided [`ClientConfig`]. async fn init(config: ClientConfig) -> Result<Arc<Self>> { let client = Arc::new(Client { disconnect: AtomicBool::new(false), |