Precomputed hashx status #17
2 changed files with 9 additions and 6 deletions
|
@ -850,6 +850,14 @@ class HubDB:
|
|||
self.prefix_db.close()
|
||||
self.prefix_db = None
|
||||
|
||||
def get_hashX_status(self, hashX: bytes):
|
||||
mempool_status = self.prefix_db.hashX_mempool_status.get(hashX)
|
||||
if mempool_status:
|
||||
return mempool_status.status.hex()
|
||||
status = self.prefix_db.hashX_status.get(hashX)
|
||||
if status:
|
||||
return status.status.hex()
|
||||
|
||||
def get_tx_hash(self, tx_num: int) -> bytes:
|
||||
if self._cache_all_tx_hashes:
|
||||
return self.total_transactions[tx_num]
|
||||
|
|
|
@ -1101,12 +1101,7 @@ class LBRYElectrumX(asyncio.Protocol):
|
|||
return len(self.hashX_subs)
|
||||
|
||||
async def get_hashX_status(self, hashX: bytes):
|
||||
mempool_status = self.db.prefix_db.hashX_mempool_status.get(hashX)
|
||||
if mempool_status:
|
||||
return mempool_status.status.hex()
|
||||
status = self.db.prefix_db.hashX_status.get(hashX)
|
||||
if status:
|
||||
return status.status.hex()
|
||||
return await self.loop.run_in_executor(self.db._executor, self.db.get_hashX_status, hashX)
|
||||
|
||||
async def send_history_notifications(self, *hashXes: typing.Iterable[bytes]):
|
||||
notifications = []
|
||||
|
|
Loading…
Reference in a new issue