Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry-enebeli committed Sep 9, 2024
1 parent 1b0b314 commit bb26d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ func (l *Blnk) releaseLock(ctx context.Context, locker *redlock.Locker) {
func (l *Blnk) logAndRecordError(span trace.Span, msg string, err error) error {
span.RecordError(err)
logrus.Error(msg, err)
return fmt.Errorf("%s: %w\t", msg, err)
return fmt.Errorf("%s: %w", msg, err)
}

func (l *Blnk) RejectTransaction(ctx context.Context, transaction *model.Transaction, reason string) (*model.Transaction, error) {
Expand Down

0 comments on commit bb26d39

Please sign in to comment.