We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b49489a commit c9f03ecCopy full SHA for c9f03ec
tests/json-fixtures/test_transactions.py
@@ -28,6 +28,9 @@
28
from eth.vm.forks.byzantium.transactions import (
29
ByzantiumTransaction
30
)
31
+from eth.vm.forks.constantinople.transactions import (
32
+ ConstantinopleTransaction
33
+)
34
35
from eth_typing.enums import (
36
ForkName
@@ -92,7 +95,7 @@ def fixture_transaction_class(fixture_data):
92
95
elif fork_name == ForkName.Byzantium:
93
96
return ByzantiumTransaction
94
97
elif fork_name == ForkName.Constantinople:
- pytest.skip("Constantinople Transaction class has not been implemented")
98
+ return ConstantinopleTransaction
99
elif fork_name == ForkName.Metropolis:
100
pytest.skip("Metropolis Transaction class has not been implemented")
101
else:
0 commit comments