From 0272c125b00c1fbb33e1cd4d46e795bcd0443e8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Granh=C3=A3o?= Date: Tue, 21 Jan 2025 15:54:12 +0000 Subject: [PATCH] Fix clippy warnings --- lib/core/src/sdk.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/core/src/sdk.rs b/lib/core/src/sdk.rs index 377a51df5..99de245f0 100644 --- a/lib/core/src/sdk.rs +++ b/lib/core/src/sdk.rs @@ -2204,8 +2204,8 @@ impl LiquidSdk { /// * `req` - the [PrepareRefundRequest] containing: /// * `swap_address` - the swap address to refund from [RefundableSwap::swap_address] /// * `refund_address` - the Bitcoin address to refund to. To ensure a valid address is - /// provided, user input should be validated using [LiquidSdk::parse], and `refund_address` - /// should be obtained from the [BitcoinAddressData] in [InputType::BitcoinAddress]. + /// provided, user input should be validated using [LiquidSdk::parse], and `refund_address` + /// should be obtained from the [BitcoinAddressData] in [InputType::BitcoinAddress]. /// * `fee_rate_sat_per_vbyte` - the fee rate at which to broadcast the refund transaction pub async fn prepare_refund( &self, @@ -2233,8 +2233,8 @@ impl LiquidSdk { /// * `req` - the [RefundRequest] containing: /// * `swap_address` - the swap address to refund from [RefundableSwap::swap_address] /// * `refund_address` - the Bitcoin address to refund to. To ensure a valid address is - /// provided, user input should be validated using [LiquidSdk::parse], and `refund_address` - /// should be obtained from the [BitcoinAddressData] in [InputType::BitcoinAddress]. + /// provided, user input should be validated using [LiquidSdk::parse], and `refund_address` + /// should be obtained from the [BitcoinAddressData] in [InputType::BitcoinAddress]. /// * `fee_rate_sat_per_vbyte` - the fee rate at which to broadcast the refund transaction pub async fn refund(&self, req: &RefundRequest) -> Result { let refund_tx_id = self