From cf63dcea788e9a75f4e94714235b9744d7384cfb Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Thu, 6 Jun 2024 16:25:10 +0200 Subject: [PATCH] Update wallet.rs --- swap/src/monero/wallet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/src/monero/wallet.rs b/swap/src/monero/wallet.rs index 71e63af8..b0d978aa 100644 --- a/swap/src/monero/wallet.rs +++ b/swap/src/monero/wallet.rs @@ -280,7 +280,7 @@ impl Wallet { // We would not want to fail here if the height is not available // as it is not critical for the operation of the wallet. - // We can just log the error and continue. + // We can just log a warning and continue. let height = match self.inner.lock().await.get_height().await { Ok(height) => height.to_string(), Err(_) => {