From ea9836a701d899058fc6e89529d470306d0855b7 Mon Sep 17 00:00:00 2001 From: Zaxounette <51208677+Zaxounette@users.noreply.github.com> Date: Sat, 8 Aug 2020 12:50:55 +0200 Subject: [PATCH] Subtle term change in Awaiting-payout-notification --- BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs b/BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs index bec68b5f7..df70ac3fe 100644 --- a/BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs +++ b/BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs @@ -20,7 +20,7 @@ namespace BTCPayServer.Services.Notifications.Blobs public override string NotificationType => "payout"; protected override void FillViewModel(PayoutNotification notification, NotificationViewModel vm) { - vm.Body = "A new payout is awaiting for payment"; + vm.Body = "A new payout is awaiting for approval"; vm.ActionLink = _linkGenerator.GetPathByAction(nameof(WalletsController.Payouts), "Wallets", new { walletId = new WalletId(notification.StoreId, notification.PaymentMethod) }, _options.RootPath);