From 3dbb8a0cc1b6ce948a02b13018225db21cd5c04e Mon Sep 17 00:00:00 2001 From: Zaxounette <51208677+Zaxounette@users.noreply.github.com> Date: Sat, 8 Aug 2020 12:47:28 +0200 Subject: [PATCH] Rewording of the success-claim-message for clarity --- BTCPayServer/Controllers/PullPaymentController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/PullPaymentController.cs b/BTCPayServer/Controllers/PullPaymentController.cs index 034bb5345..fe8bebd5c 100644 --- a/BTCPayServer/Controllers/PullPaymentController.cs +++ b/BTCPayServer/Controllers/PullPaymentController.cs @@ -133,7 +133,7 @@ namespace BTCPayServer.Controllers { TempData.SetStatusMessageModel(new StatusMessageModel() { - Message = $"You posted a claim of {_currencyNameTable.DisplayFormatCurrency(vm.ClaimedAmount, ppBlob.Currency)} to {vm.Destination}, this will get fullfilled later.", + Message = $"Your claim request of {_currencyNameTable.DisplayFormatCurrency(vm.ClaimedAmount, ppBlob.Currency)} to {vm.Destination} has been submitted and is awaiting approval.", Severity = StatusMessageModel.StatusSeverity.Success }); }