From 6c9b969d5e3ffcdfd0b781b1ccbd52b3b52cf9eb Mon Sep 17 00:00:00 2001 From: f321x Date: Tue, 9 Jul 2024 18:12:04 +0000 Subject: [PATCH] debug statements --- taptrade-cli-demo/coordinator/src/wallet/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/taptrade-cli-demo/coordinator/src/wallet/mod.rs b/taptrade-cli-demo/coordinator/src/wallet/mod.rs index ea33b0f..2f00586 100644 --- a/taptrade-cli-demo/coordinator/src/wallet/mod.rs +++ b/taptrade-cli-demo/coordinator/src/wallet/mod.rs @@ -74,6 +74,7 @@ impl CoordinatorWallet { let blockchain = &*self.backend; let tx: Transaction = deserialize(&hex::decode(bond)?)?; { + debug!("Called validate_bond_tx_hex()"); let wallet = self.wallet.lock().await; if let Err(e) = wallet.sync(blockchain, SyncOptions::default()) { error!("Error syncing wallet: {:?}", e);