From deced5466510b7fefabaa9623b9e1b2aa03522c3 Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Sat, 15 Nov 2025 22:54:56 -0300 Subject: [PATCH] staticaddr/withdraw: make error log unique Make it easier to distinguish this error from a similar error few lines above. --- staticaddr/withdraw/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staticaddr/withdraw/manager.go b/staticaddr/withdraw/manager.go index 09a567cf..0bc29d82 100644 --- a/staticaddr/withdraw/manager.go +++ b/staticaddr/withdraw/manager.go @@ -696,7 +696,7 @@ func (m *Manager) handleWithdrawal(ctx context.Context, } case err := <-errChan: - log.Errorf("Error waiting for confirmation: %v", err) + log.Errorf("Error waiting for spending: %v", err) case <-ctx.Done(): log.Errorf("Withdrawal tx confirmation wait canceled")