From 3ed8c7a9fc07fe951995587085b3b30559cf031c Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Sun, 22 Jun 2025 22:29:07 -0300 Subject: [PATCH] staticaddr/withdraw: log PublishTransaction start --- staticaddr/withdraw/manager.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/staticaddr/withdraw/manager.go b/staticaddr/withdraw/manager.go index 0cd4adad..7d12709b 100644 --- a/staticaddr/withdraw/manager.go +++ b/staticaddr/withdraw/manager.go @@ -558,6 +558,9 @@ func (m *Manager) publishFinalizedWithdrawalTx(ctx context.Context, "withdrawal tx is nil") } + log.Debugf("Publishing deposit withdrawal with txid: %v ...", + tx.TxHash()) + txLabel := fmt.Sprintf("deposit-withdrawal-%v", tx.TxHash()) // Publish the withdrawal sweep transaction. @@ -577,7 +580,7 @@ func (m *Manager) publishFinalizedWithdrawalTx(ctx context.Context, return false, nil } } else { - log.Debugf("published deposit withdrawal with txid: %v", + log.Debugf("Published deposit withdrawal with txid: %v", tx.TxHash()) }