Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit bf639b8

Browse files
committed
Remove wildcard import
1 parent 9188be1 commit bf639b8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ethereum/processblock.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
from ethereum import specials
88
from ethereum import bloom
99
from ethereum import vm as vm
10-
from ethereum.exceptions import *
10+
from ethereum.exceptions import InvalidNonce, InsufficientStartGas, UnsignedTransaction, \
11+
BlockGasLimitReached, InsufficientBalance, VerificationFailed
1112
from ethereum.utils import safe_ord, normalize_address, mk_contract_address, \
1213
mk_metropolis_contract_address, int_to_addr, big_endian_to_int
1314
from ethereum import transactions
@@ -37,7 +38,7 @@ def verify(block, parent):
3738
env=parent.env, parent=parent)
3839
assert block == block2
3940
return True
40-
except blocks.VerificationFailed:
41+
except VerificationFailed:
4142
return False
4243

4344

0 commit comments

Comments
 (0)