mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
fix bip21 + coinselection combo bug in wallet send
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user