mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 12:11:35 +00:00
Merge pull request #1437 from soulbless/main
Some checks failed
Lint: Python Coordinator / Run linters (push) Has been cancelled
Some checks failed
Lint: Python Coordinator / Run linters (push) Has been cancelled
Update warning text when routing budget is not sufficient.
This commit is contained in:
commit
20f624dbf7
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user