From 2eed8b620c242d466a918536d0e3519035d7602a Mon Sep 17 00:00:00 2001 From: benarc Date: Wed, 3 Nov 2021 22:55:44 +0000 Subject: [PATCH] removed header --- lnbits/wallets/spark.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lnbits/wallets/spark.py b/lnbits/wallets/spark.py index 1505c2ebd..93f37cceb 100644 --- a/lnbits/wallets/spark.py +++ b/lnbits/wallets/spark.py @@ -187,9 +187,7 @@ class SparkWallet(Wallet): while True: try: - async with httpx.AsyncClient( - timeout=None, headers=self.token - ) as client: + async with httpx.AsyncClient(timeout=None) as client: async with client.stream("GET", url) as r: async for line in r.aiter_lines(): if line.startswith("data:"):