From 2462168ec99c77c61d15b8e5b63a63fd918d4473 Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Sun, 8 Dec 2024 16:34:54 +0000 Subject: [PATCH] fix: ws wasm build --- crates/cdk/src/wallet/subscription/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/cdk/src/wallet/subscription/mod.rs b/crates/cdk/src/wallet/subscription/mod.rs index 19d2abcf..79ee1b7b 100644 --- a/crates/cdk/src/wallet/subscription/mod.rs +++ b/crates/cdk/src/wallet/subscription/mod.rs @@ -31,7 +31,7 @@ type WsSubscriptionBody = (mpsc::Sender, Params); /// Subscription manager /// /// This structure should be instantiated once per wallet at most. It is -/// clonable since all its members are Arcs. +/// cloneable since all its members are Arcs. /// /// The main goal is to provide a single interface to manage multiple /// subscriptions to many servers to subscribe to events. If supported, the @@ -215,7 +215,6 @@ impl SubscriptionClient { ))] return Self::http_worker( http_client, - url, subscriptions, new_subscription_recv, on_drop_recv,