From 2e7954fcbb5b9d47549ec4c9bf1c4fe97c47c348 Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Thu, 31 Aug 2023 12:15:07 +0200 Subject: [PATCH] Print message upon syncing monero wallet --- swap/src/protocol/bob/swap.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/swap/src/protocol/bob/swap.rs b/swap/src/protocol/bob/swap.rs index 66933a87..80953314 100644 --- a/swap/src/protocol/bob/swap.rs +++ b/swap/src/protocol/bob/swap.rs @@ -247,6 +247,7 @@ async fn next_state( } // Ensure that the generated wallet is synced so we have a proper balance + tracing::info!("Syncing Monero wallet. This might take some time..."); monero_wallet.refresh().await?; // Sweep (transfer all funds) to the given address let tx_hashes = monero_wallet.sweep_all(monero_receive_address).await?;