From 63593973ba8ae4505a95f2db6852f83604842fb3 Mon Sep 17 00:00:00 2001 From: Nicolas Cantu Date: Fri, 22 Aug 2025 14:23:13 +0200 Subject: [PATCH] Clean up formatting: remove trailing whitespace in daemon.rs --- src/daemon.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/daemon.rs b/src/daemon.rs index 5723aef..4fda18d 100644 --- a/src/daemon.rs +++ b/src/daemon.rs @@ -106,7 +106,7 @@ fn rpc_connect(rpcwallet: Option, network: Network, mut rpc_url: String, let builder = jsonrpc::simple_http::SimpleHttpTransport::builder() .url(&rpc_url)? .timeout(Duration::from_secs(30)); - + let cookie_path = match cookie_path { Some(path) => path, None => { @@ -119,7 +119,7 @@ fn rpc_connect(rpcwallet: Option, network: Network, mut rpc_url: String, default_path } }; - + let daemon_auth = SensitiveAuth(Auth::CookieFile(cookie_path)); let builder = match daemon_auth.get_auth() { Auth::None => builder,