mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +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))
|
if (!string.IsNullOrEmpty(bip21))
|
||||||
{
|
{
|
||||||
LoadFromBIP21(vm, bip21, network);
|
LoadFromBIP21(vm, bip21, network);
|
||||||
return View(vm);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
decimal transactionAmountSum = 0;
|
decimal transactionAmountSum = 0;
|
||||||
@@ -503,6 +502,11 @@ namespace BTCPayServer.Controllers
|
|||||||
ModelState.Clear();
|
ModelState.Clear();
|
||||||
return View(vm);
|
return View(vm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(bip21))
|
||||||
|
{
|
||||||
|
return View(vm);
|
||||||
|
}
|
||||||
if (command == "add-output")
|
if (command == "add-output")
|
||||||
{
|
{
|
||||||
ModelState.Clear();
|
ModelState.Clear();
|
||||||
|
|||||||
Reference in New Issue
Block a user