From 579dcb5af8330379aeae7abc53fbc8b6ddbd64cb Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Sat, 20 Jan 2018 00:29:20 +0900 Subject: [PATCH] Fix confirmation message when changing altcoin derivation scheme --- BTCPayServer/Controllers/StoresController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/StoresController.cs b/BTCPayServer/Controllers/StoresController.cs index c61476377..15f368008 100644 --- a/BTCPayServer/Controllers/StoresController.cs +++ b/BTCPayServer/Controllers/StoresController.cs @@ -243,7 +243,7 @@ namespace BTCPayServer.Controllers } await _Repo.UpdateStore(store); - StatusMessage = $"Derivation scheme for {vm.CryptoCurrency} has been modified."; + StatusMessage = $"Derivation scheme for {network.CryptoCode} has been modified."; return RedirectToAction(nameof(UpdateStore), new { storeId = storeId }); } else