Skip to content

Commit

Permalink
refactor(telemetry): simplify transaction logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
lmquang committed Feb 25, 2025
1 parent f981aad commit 89e279a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/telemetry/btc.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (t *Telemetry) ProcessPendingBtcTransactions() error {
// TODO: Implement actual sending logic based on the existing Send method
// This is a placeholder and needs to be replaced with actual implementation
t.logger.Info(fmt.Sprintf("[ProcessPendingBtcTransactions] processing pending transaction: %s",
*pendingTx.IcyTransactionHash))
pendingTx.ID))

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

0 comments on commit 89e279a

Please sign in to comment.