diff --git a/web3/eth.py b/web3/eth.py index dfaddbe8de..72596f2c8f 100644 --- a/web3/eth.py +++ b/web3/eth.py @@ -431,11 +431,6 @@ async def wait_for_transaction_receipt( ) except TransactionNotFound: tx_receipt = None - # FIXME: The check for a null `blockHash` is due to parity's - # non-standard implementation of the JSON-RPC API and should - # be removed once the formal spec for the JSON-RPC endpoints - # has been finalized. - # if txn_receipt is not None and txn_receipt['blockHash'] is not None: if tx_receipt is not None: break _timeout.sleep(poll_latency) @@ -735,11 +730,6 @@ def wait_for_transaction_receipt( tx_receipt = self._get_transaction_receipt(transaction_hash) except TransactionNotFound: tx_receipt = None - # FIXME: The check for a null `blockHash` is due to parity's - # non-standard implementation of the JSON-RPC API and should - # be removed once the formal spec for the JSON-RPC endpoints - # has been finalized. - # if txn_receipt is not None and txn_receipt['blockHash'] is not None: if tx_receipt is not None: break _timeout.sleep(poll_latency)