diff --git a/api/lightning/cln.py b/api/lightning/cln.py index c446a83a..82488417 100755 --- a/api/lightning/cln.py +++ b/api/lightning/cln.py @@ -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 diff --git a/api/lightning/lnd.py b/api/lightning/lnd.py index cd6f91f0..f914857e 100644 --- a/api/lightning/lnd.py +++ b/api/lightning/lnd.py @@ -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