Skip to content

Commit 89e279a

Browse files
committed
refactor(telemetry): simplify transaction logging message
1 parent f981aad commit 89e279a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/telemetry/btc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func (t *Telemetry) ProcessPendingBtcTransactions() error {
101101
// TODO: Implement actual sending logic based on the existing Send method
102102
// This is a placeholder and needs to be replaced with actual implementation
103103
t.logger.Info(fmt.Sprintf("[ProcessPendingBtcTransactions] processing pending transaction: %s",
104-
*pendingTx.IcyTransactionHash))
104+
pendingTx.ID))
105105

106106
if pendingTx.BTCAddress == "" || pendingTx.Amount == "" {
107107
err = t.store.OnchainBtcProcessedTransaction.UpdateStatus(t.db, pendingTx.ID, model.BtcProcessingStatusFailed)

0 commit comments

Comments
 (0)