Skip to content

Commit 7ee7041

Browse files
committed
[DRM] Enable Constantinople tests
1 parent a8b1a74 commit 7ee7041

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

eth/tools/fixtures/helpers.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
BaseVM,
4141
)
4242
from eth.vm.forks import (
43+
ConstantinopleVM,
4344
ByzantiumVM,
4445
TangerineWhistleVM,
4546
FrontierVM,
@@ -123,6 +124,10 @@ def chain_vm_configuration(fixture: Dict[str, Any]) -> Iterable[Tuple[int, Type[
123124
return (
124125
(0, ByzantiumVM),
125126
)
127+
elif network == 'Constantinople':
128+
return (
129+
(0, ConstantinopleVM),
130+
)
126131
elif network == 'FrontierToHomesteadAt5':
127132
HomesteadVM = BaseHomesteadVM.configure(support_dao_fork=False)
128133
return (

tests/json-fixtures/test_blockchain.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,6 @@ def fixture(fixture_data):
164164
fixture_key,
165165
normalize_blockchain_fixtures,
166166
)
167-
if fixture['network'] == 'Constantinople':
168-
pytest.skip('Constantinople VM rules not yet supported')
169167
return fixture
170168

171169

0 commit comments

Comments
 (0)