Merge pull request #1437 from soulbless/main

Update warning text when routing budget is not sufficient.
This commit is contained in:
KoalaSat
2024-09-06 08:45:53 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -449,7 +449,7 @@ class CLNNode:
# If the cheapest possible private route is more expensive than what RoboSats is willing to pay
if min(routes_cost) >= max_routing_fee_sats:
payout["context"] = {
"bad_invoice": "The invoice hinted private routes are not payable within the submitted routing budget."
"bad_invoice": "The invoice hinted private routes are not payable within the submitted routing budget. This can be adjusted with Advanced Options enabled."
}
return payout

View File

@ -424,7 +424,7 @@ class LNDNode:
# If the cheapest possible private route is more expensive than what RoboSats is willing to pay
if min(routes_cost) >= max_routing_fee_sats:
payout["context"] = {
"bad_invoice": "The invoice hinted private routes are not payable within the submitted routing budget."
"bad_invoice": "The invoice hinted private routes are not payable within the submitted routing budget. This can be adjusted with Advanced Options enabled."
}
return payout