From f9d0cf91bdc3c31e4672047fa4b8eb6cf252fc4d Mon Sep 17 00:00:00 2001 From: ok300 <106775972+ok300@users.noreply.github.com> Date: Sat, 2 Nov 2024 17:15:53 +0100 Subject: [PATCH] Fix CI --- crates/cdk/src/wallet/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/cdk/src/wallet/mod.rs b/crates/cdk/src/wallet/mod.rs index a7b2eb77f..3658b6c11 100644 --- a/crates/cdk/src/wallet/mod.rs +++ b/crates/cdk/src/wallet/mod.rs @@ -56,7 +56,7 @@ pub struct Wallet { /// The targeted amount of proofs to have at each size pub target_proof_count: usize, xpriv: Xpriv, - client: Arc, + client: Arc, } impl Wallet { @@ -97,7 +97,7 @@ impl Wallet { } /// Change HTTP client - pub fn set_client(&mut self, client: C) { + pub fn set_client(&mut self, client: C) { self.client = Arc::new(client); }