From fbfc3e5d18127ecb3387ed1ac4348dd3b25a3a76 Mon Sep 17 00:00:00 2001 From: Kaloyan Raev Date: Tue, 2 Jun 2020 11:29:43 +0300 Subject: [PATCH] satellite/payments: adjust label for bonus This change adjusts the label for STORJ deposit bonuses in billing history to be more consistent with other labels. Change-Id: I5e7179ae3ac52dafb0dcef084e9a7c4742491f9e --- satellite/console/service.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/satellite/console/service.go b/satellite/console/service.go index 3a0b3c96e..ef170bb40 100644 --- a/satellite/console/service.go +++ b/satellite/console/service.go @@ -331,7 +331,7 @@ func (paymentService PaymentsService) BillingHistory(ctx context.Context) (billi for _, credit := range credits { billingHistory = append(billingHistory, &BillingHistoryItem{ - Description: "10% bonus for deposit made in STORJ", + Description: "10% Bonus for STORJ Token Deposit", Amount: credit.Amount, Status: "Added to balance", Start: credit.Created, @@ -348,7 +348,7 @@ func (paymentService PaymentsService) BillingHistory(ctx context.Context) (billi for _, bonus := range bonuses { billingHistory = append(billingHistory, &BillingHistoryItem{ - Description: fmt.Sprintf("%d%% bonus for deposit made in STORJ", bonus.Percentage), + Description: fmt.Sprintf("%d%% Bonus for STORJ Token Deposit", bonus.Percentage), Amount: bonus.AmountCents, Status: "Added to balance", Start: bonus.CreatedAt,