mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 20:21:35 +00:00
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:
parent
27b8490f33
commit
bd44f0fe63
@ -449,7 +449,7 @@ class CLNNode:
|
|||||||
# If the cheapest possible private route is more expensive than what RoboSats is willing to pay
|
# If the cheapest possible private route is more expensive than what RoboSats is willing to pay
|
||||||
if min(routes_cost) >= max_routing_fee_sats:
|
if min(routes_cost) >= max_routing_fee_sats:
|
||||||
payout["context"] = {
|
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
|
return payout
|
||||||
|
|
||||||
|
@ -424,7 +424,7 @@ class LNDNode:
|
|||||||
# If the cheapest possible private route is more expensive than what RoboSats is willing to pay
|
# If the cheapest possible private route is more expensive than what RoboSats is willing to pay
|
||||||
if min(routes_cost) >= max_routing_fee_sats:
|
if min(routes_cost) >= max_routing_fee_sats:
|
||||||
payout["context"] = {
|
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
|
return payout
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user