broadcast_or_release uses None as timeout as opposed to tests

This commit is contained in:
Victor Shyba 2019-12-19 23:42:31 -03:00
parent 0301768b79
commit 5fa801f9f2

View file

@ -226,7 +226,7 @@ class LbryWalletManager(BaseWalletManager):
try:
await self.ledger.broadcast(tx)
if blocking:
await self.ledger.wait(tx)
await self.ledger.wait(tx, timeout=None)
except:
await self.ledger.release_tx(tx)
raise