From bd44f0fe63cee3fbe067a0ced8308ae7b822fdea Mon Sep 17 00:00:00 2001 From: soulbless <179861579+soulbless@users.noreply.github.com> Date: Tue, 3 Sep 2024 14:32:22 +0100 Subject: [PATCH] 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. --- api/lightning/cln.py | 2 +- api/lightning/lnd.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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