diff --git a/satellite/console/service.go b/satellite/console/service.go index 8b090c460..661d2ed85 100644 --- a/satellite/console/service.go +++ b/satellite/console/service.go @@ -158,7 +158,7 @@ func (paymentService PaymentsService) AddCreditCard(ctx context.Context, creditC return Error.Wrap(err) } - err = paymentService.AddPromotionalCoupon(ctx, auth.User.ID, 2, 28, memory.TB) + err = paymentService.AddPromotionalCoupon(ctx, auth.User.ID, 2, 5500, memory.TB) if err != nil { paymentService.service.log.Debug(fmt.Sprintf("could not add promotional coupon sof user %s", auth.User.ID.String()), zap.Error(Error.Wrap(err))) } @@ -863,7 +863,7 @@ func (s *Service) CreateProject(ctx context.Context, projectInfo ProjectInfo) (p s.log.Debug(fmt.Sprintf("could not add promotional coupon for user %s - no payment methods", auth.User.ID.String()), zap.Error(Error.Wrap(err))) return p, nil } - err = s.accounts.Coupons().AddPromotionalCoupon(ctx, auth.User.ID, 2, 28, memory.TB) + err = s.accounts.Coupons().AddPromotionalCoupon(ctx, auth.User.ID, 2, 5500, memory.TB) if err != nil { s.log.Debug(fmt.Sprintf("could not add promotional coupon for user %s", auth.User.ID.String()), zap.Error(Error.Wrap(err))) } diff --git a/satellite/payments/stripecoinpayments/service.go b/satellite/payments/stripecoinpayments/service.go index aa099e30a..80a9caf6c 100644 --- a/satellite/payments/stripecoinpayments/service.go +++ b/satellite/payments/stripecoinpayments/service.go @@ -210,7 +210,7 @@ func (service *Service) updateTransactions(ctx context.Context, ids TransactionA cents := convertToCents(rate, &info.Received) if cents >= 5000 { - err = service.Accounts().Coupons().AddPromotionalCoupon(ctx, userID, 2, 28, memory.TB) + err = service.Accounts().Coupons().AddPromotionalCoupon(ctx, userID, 2, 5500, memory.TB) if err != nil { service.log.Error(fmt.Sprintf("could not add promotional coupon for user %s", userID.String()), zap.Error(err)) continue