mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
fix bip21 + coinselection combo bug in wallet send
This commit is contained in:
parent
02d26467f9
commit
e49074d797
1 changed files with 5 additions and 1 deletions
|
@ -469,7 +469,6 @@ namespace BTCPayServer.Controllers
|
|||
if (!string.IsNullOrEmpty(bip21))
|
||||
{
|
||||
LoadFromBIP21(vm, bip21, network);
|
||||
return View(vm);
|
||||
}
|
||||
|
||||
decimal transactionAmountSum = 0;
|
||||
|
@ -503,6 +502,11 @@ namespace BTCPayServer.Controllers
|
|||
ModelState.Clear();
|
||||
return View(vm);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(bip21))
|
||||
{
|
||||
return View(vm);
|
||||
}
|
||||
if (command == "add-output")
|
||||
{
|
||||
ModelState.Clear();
|
||||
|
|
Loading…
Add table
Reference in a new issue