Skip to content

Commit b99e79b

Browse files
committed
Base on MuirGlacier instead of Constantinople
This change was made most places, looks like only one was missing.
1 parent 5aab14e commit b99e79b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eth/vm/forks/berlin/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
)
44

55
from eth.rlp.blocks import BaseBlock
6-
from eth.vm.forks.constantinople import (
7-
ConstantinopleVM,
6+
from eth.vm.forks import (
7+
MuirGlacierVM,
88
)
99
from eth.vm.state import BaseState
1010

@@ -17,7 +17,7 @@
1717
from .state import BerlinState
1818

1919

20-
class BerlinVM(ConstantinopleVM):
20+
class BerlinVM(MuirGlacierVM):
2121
# fork name
2222
fork = 'berlin'
2323

0 commit comments

Comments
 (0)