File tree 2 files changed +9
-4
lines changed
eth_tester/backends/pyevm
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
Unreleased
2
2
----------
3
3
4
+ - Breaking changes
5
+
6
+ - Default to IstanbulVM
7
+ https://github.com/ethereum/eth-tester/pull/169
8
+
4
9
- Misc
5
10
6
11
- Upgrade to py-evm v0.3.0-b7
Original file line number Diff line number Diff line change @@ -147,17 +147,17 @@ def get_default_genesis_params(overrides=None):
147
147
def setup_tester_chain (genesis_params = None , genesis_state = None , num_accounts = None ):
148
148
from eth .chains .base import MiningChain
149
149
from eth .db import get_db_backend
150
- from eth .vm .forks .constantinople import ConstantinopleVM
150
+ from eth .vm .forks .istanbul import IstanbulVM
151
151
152
- class ConstantinopleNoProofVM ( ConstantinopleVM ):
153
- """Constantinople VM rules, without validating any miner proof of work"""
152
+ class IstanbulNoProofVM ( IstanbulVM ):
153
+ """Istanbul VM rules, without validating any miner proof of work"""
154
154
155
155
@classmethod
156
156
def validate_seal (self , header ):
157
157
pass
158
158
159
159
class MainnetTesterNoProofChain (MiningChain ):
160
- vm_configuration = ((0 , ConstantinopleNoProofVM ), )
160
+ vm_configuration = ((0 , IstanbulNoProofVM ), )
161
161
162
162
@classmethod
163
163
def validate_seal (cls , block ):
You can’t perform that action at this time.
0 commit comments