mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
[UX/UI] Add CPFP (#3395)
* Add CPFP * Sign PSBT should go back to the initial page
This commit is contained in:
@@ -498,14 +498,14 @@ namespace BTCPayServer
|
||||
{
|
||||
AspController = "UIHome",
|
||||
AspAction = "RecoverySeedBackup",
|
||||
Parameters =
|
||||
FormParameters =
|
||||
{
|
||||
new KeyValuePair<string, string>("cryptoCode", vm.CryptoCode),
|
||||
new KeyValuePair<string, string>("mnemonic", vm.Mnemonic),
|
||||
new KeyValuePair<string, string>("passphrase", vm.Passphrase),
|
||||
new KeyValuePair<string, string>("isStored", vm.IsStored ? "true" : "false"),
|
||||
new KeyValuePair<string, string>("requireConfirm", vm.RequireConfirm ? "true" : "false"),
|
||||
new KeyValuePair<string, string>("returnUrl", vm.ReturnUrl)
|
||||
{ "cryptoCode", vm.CryptoCode },
|
||||
{ "mnemonic", vm.Mnemonic },
|
||||
{ "passphrase", vm.Passphrase },
|
||||
{ "isStored", vm.IsStored ? "true" : "false" },
|
||||
{ "requireConfirm", vm.RequireConfirm ? "true" : "false" },
|
||||
{ "returnUrl", vm.ReturnUrl }
|
||||
}
|
||||
};
|
||||
return controller.View("PostRedirect", redirectVm);
|
||||
|
||||
Reference in New Issue
Block a user