1
0

Make lnwatcher not async

This fixes offline history not having the proper labels
This commit is contained in:
ThomasV
2025-02-07 09:52:03 +01:00
parent 42b072aca8
commit fbebe7de1a
5 changed files with 117 additions and 87 deletions

View File

@@ -108,8 +108,12 @@ class MockBlockchain:
class MockADB:
def __init__(self):
self._blockchain = MockBlockchain()
def add_transaction(self, tx):
pass
def get_local_height(self):
return self._blockchain.height()
class MockWallet:
receive_requests = {}