From 3ee3963030d3f3b9df4455ad7094fe15f2dfd435 Mon Sep 17 00:00:00 2001 From: Slyghtning Date: Mon, 2 Sep 2024 09:43:40 +0200 Subject: [PATCH] sweepbatcher: log confirmed batch tx id --- sweepbatcher/sweep_batch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sweepbatcher/sweep_batch.go b/sweepbatcher/sweep_batch.go index ce0836f..d0bcbaa 100644 --- a/sweepbatcher/sweep_batch.go +++ b/sweepbatcher/sweep_batch.go @@ -1997,7 +1997,7 @@ func (b *batch) handleSpend(ctx context.Context, spendTx *wire.MsgTx) error { // handleConf handles a confirmation notification. This is the final step of the // batch. Here we signal to the batcher that this batch was completed. func (b *batch) handleConf(ctx context.Context) error { - b.log.Infof("confirmed") + b.log.Infof("confirmed in txid %s", b.batchTxid) b.state = Confirmed return b.store.ConfirmBatch(ctx, b.id)