Printing sammy's balance at the end of HTLC creation

This commit is contained in:
Dave Hrycyszyn
2024-07-29 11:01:58 +01:00
parent bcd76c2ebc
commit 170723d05e

View File

@@ -52,6 +52,7 @@ pub(crate) async fn run() -> anyhow::Result<()> {
let _ = dave.broadcast(&tx)?;
let _ = sammy.sync();
let _ = sammy.wallet.get_balance();
let sammy_balance = sammy.wallet.get_balance()?;
tracing::info!("sammy balance: {}", sammy_balance);
Ok(())
}