Skip to content

Commit

Permalink
Fix debug typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed-mehany committed Oct 19, 2023
1 parent 306c171 commit c067501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/chains/evm/txmgr/evm_tx_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,7 @@ func (o *evmTxStore) UpdateTxUnstartedToInProgress(ctx context.Context, etx *Tx,
if err != nil {
return pkgerrors.Wrap(err, "UpdateTxUnstartedToInProgress failed to count deleted rows")
}
o.logger.Debugf("$1 rows were deleted", count)
o.logger.Debugf("%d rows were deleted", count)
} else if errors.Is(err, sql.ErrNoRows) {
return err
}
Expand Down

0 comments on commit c067501

Please sign in to comment.