feat: make route hints configurable for lndrest (#2304)

* feat: make route hints configurable for lndrest
boolean if route hints for private channels will be included from `LndRest` inside bolt11 invoice.
This commit is contained in:
dni ⚡
2024-03-22 12:45:39 +01:00
committed by GitHub
parent c8818f5774
commit 5b022e2ef3
4 changed files with 9 additions and 3 deletions
+5 -1
View File
@@ -107,7 +107,11 @@ class LndRestWallet(Wallet):
unhashed_description: Optional[bytes] = None,
**kwargs,
) -> InvoiceResponse:
data: Dict = {"value": amount, "private": True, "memo": memo or ""}
data: Dict = {
"value": amount,
"private": settings.lnd_rest_route_hints,
"memo": memo or "",
}
if kwargs.get("expiry"):
data["expiry"] = kwargs["expiry"]
if description_hash: