fix bip21 + coinselection combo bug in wallet send

This commit is contained in:
Kukks 2020-04-27 12:12:01 +02:00
parent 02d26467f9
commit e49074d797

View file

@ -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();