Printing wwallet sync to log

This commit is contained in:
Dave Hrycyszyn
2024-07-29 11:00:45 +01:00
parent ebe5283ed2
commit 03ecff9541

View File

@@ -20,6 +20,7 @@ pub struct BitcoinClient {
impl BitcoinClient {
pub(crate) fn sync(&self) -> anyhow::Result<()> {
tracing::info!("syncing {}'s wallet", self.name);
self.wallet.sync(&self.blockchain, SyncOptions::default())?;
Ok(())
}