diff --git a/BTCPayServer/Controllers/WalletsController.cs b/BTCPayServer/Controllers/WalletsController.cs index 3cb387f21..95d1a388f 100644 --- a/BTCPayServer/Controllers/WalletsController.cs +++ b/BTCPayServer/Controllers/WalletsController.cs @@ -252,7 +252,7 @@ namespace BTCPayServer.Controllers case "ledger": return ViewWalletSendLedger(psbt.PSBT, psbt.ChangeAddress); case "seed": - return RedirectToAction("SignWithSeed", new + return RedirectToAction(nameof(SignWithSeed), new { psbt = psbt.PSBT.ToBase64(), send = true @@ -351,7 +351,7 @@ namespace BTCPayServer.Controllers }, "broadcast"); } - return RedirectToAction("WalletPSBTReady", new + return RedirectToAction(nameof(WalletPSBTReady), new { walletId, psbt = signedpsbt.ToBase64()