fix having LND_GRPC_MACAROON as HEXSTRING issue #268

This commit is contained in:
Tiago vasconcelos 2021-08-05 10:31:25 +01:00 committed by fiatjaf
parent 9b89329029
commit a32e43b2bb

View File

@ -190,7 +190,11 @@ class LndWallet(Wallet):
ln.Invoice,
),
)
macaroon = load_macaroon(self.macaroon_path)
if self.macaroon_path.split('.')[-1] == 'macaroon':
macaroon = load_macaroon(self.macaroon_path)
else:
macaroon = self.macaroon_path
async for inv in subscribe_invoices(
ln.InvoiceSubscription(),