diff --git a/pkg/txm/clientwrappers/dualbroadcast/meta_client.go b/pkg/txm/clientwrappers/dualbroadcast/meta_client.go index 89112384cf..9529dc01ea 100644 --- a/pkg/txm/clientwrappers/dualbroadcast/meta_client.go +++ b/pkg/txm/clientwrappers/dualbroadcast/meta_client.go @@ -196,7 +196,7 @@ func (a *MetaClient) SendTransaction(ctx context.Context, tx *types.Transaction, if err := a.SendOperation(ctx, tx, attempt, *meta); err != nil { a.metrics.RecordSendOperationError(ctx) a.metrics.emitAtlasError(ctx, "send_operation", a.customURL, err, tx) - return fmt.Errorf("failed to send operation for transactionID(%d): %w", tx.ID, errors.Join(err, ErrAuction)) + return fmt.Errorf("failed to send operation for transactionID(%d): %w", tx.ID, err) } return nil }