From 72690b5cff021bc19274031655b48ad142ac435f Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 20 Aug 2019 14:19:50 -0400 Subject: [PATCH] raise asyncio.TimeoutError --- torba/torba/client/baseledger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torba/torba/client/baseledger.py b/torba/torba/client/baseledger.py index 52dba6c54..c11c8648b 100644 --- a/torba/torba/client/baseledger.py +++ b/torba/torba/client/baseledger.py @@ -542,4 +542,4 @@ class BaseLedger(metaclass=LedgerRegistry): )) for address_record in records ], timeout=timeout) if pending: - raise TimeoutError('Timed out waiting for transaction.') + raise asyncio.TimeoutError('Timed out waiting for transaction.')