From f33eb29bd9ad6e9205c37d4848ed2832a9368e98 Mon Sep 17 00:00:00 2001 From: Vlad Stan Date: Mon, 9 Feb 2026 13:28:25 +0200 Subject: [PATCH] chore: code clean-up --- lnbits/wallets/lightspark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/wallets/lightspark.py b/lnbits/wallets/lightspark.py index be98ad90b..41c9df437 100644 --- a/lnbits/wallets/lightspark.py +++ b/lnbits/wallets/lightspark.py @@ -154,7 +154,7 @@ class LightsparkSparkWallet(Wallet): "payment_hash": payment_hash, } res = await self._request("POST", "/v1/payments", payload) - checking_id = payment_hash or res.get("checking_id") # todo: preimage + checking_id = payment_hash or res.get("checking_id") if not checking_id: return PaymentResponse( ok=False,