From 9a767b627fdc14e7f05e79af4a7e6456821bdf70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Thu, 8 Feb 2024 15:01:23 +0100 Subject: [PATCH] chore: dead code `perform_balance_check` (#2244) this code is not used anywhere on core nor on extensions --- lnbits/tasks.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lnbits/tasks.py b/lnbits/tasks.py index 567938513..8af1d752d 100644 --- a/lnbits/tasks.py +++ b/lnbits/tasks.py @@ -14,11 +14,9 @@ from pywebpush import WebPushException, webpush from lnbits.core.crud import ( delete_expired_invoices, delete_webpush_subscriptions, - get_balance_checks, get_payments, get_standalone_payment, ) -from lnbits.core.services import redeem_lnurl_withdraw from lnbits.settings import settings from lnbits.wallets import get_wallet_class @@ -186,14 +184,6 @@ async def check_pending_payments(): await asyncio.sleep(60 * 30) # every 30 minutes -async def perform_balance_checks(): - while True: - for bc in await get_balance_checks(): - await redeem_lnurl_withdraw(bc.wallet, bc.url) - - await asyncio.sleep(60 * 60 * 6) # every 6 hours - - async def invoice_callback_dispatcher(checking_id: str): """ Takes incoming payments, sets pending=False, and dispatches them to