Update warning text when routing budget is not sufficient. (#1)

* Update warning text when routing budget is not sufficient.

* Update warning text when routing budget is not sufficient.
This commit is contained in:
soulbless 2024-09-03 14:32:22 +01:00 committed by GitHub
parent 27b8490f33
commit bd44f0fe63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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