forked from LBRYCommunity/lbry-sdk
wip
This commit is contained in:
parent
3e03dd3e80
commit
6652d55455
1 changed files with 10 additions and 5 deletions
|
@ -575,10 +575,7 @@ class BaseLedger(metaclass=LedgerRegistry):
|
||||||
# broadcast can't be a retriable call yet
|
# broadcast can't be a retriable call yet
|
||||||
return self.network.broadcast(hexlify(tx.raw).decode())
|
return self.network.broadcast(hexlify(tx.raw).decode())
|
||||||
|
|
||||||
async def wait(self, tx: basetransaction.BaseTransaction, height=-1, timeout=1):
|
async def wait(self, tx: basetransaction.BaseTransaction, height=-1, timeout=2):
|
||||||
we_have = await self.get_transactions(txid=tx.id)
|
|
||||||
if we_have and we_have[0].height >= height:
|
|
||||||
return
|
|
||||||
addresses = set()
|
addresses = set()
|
||||||
for txi in tx.inputs:
|
for txi in tx.inputs:
|
||||||
if txi.txo_ref.txo is not None:
|
if txi.txo_ref.txo is not None:
|
||||||
|
@ -596,4 +593,12 @@ class BaseLedger(metaclass=LedgerRegistry):
|
||||||
)) for address_record in records
|
)) for address_record in records
|
||||||
], timeout=timeout)
|
], timeout=timeout)
|
||||||
if pending:
|
if pending:
|
||||||
raise asyncio.TimeoutError('Timed out waiting for transaction.')
|
for record in records:
|
||||||
|
found = False
|
||||||
|
_, local_history = await self.get_local_status_and_history(None, history=record['history'])
|
||||||
|
for txid, local_height in local_history:
|
||||||
|
if txid == tx.id and local_height >= height:
|
||||||
|
found = True
|
||||||
|
if not found:
|
||||||
|
print(record['history'], addresses, tx.id)
|
||||||
|
raise asyncio.TimeoutError('Timed out waiting for transaction: %s', tx.id)
|
||||||
|
|
Loading…
Reference in a new issue