Skip to content

Commit 4ab8559

Browse files
authored
feat(cli,fill): make the eip spec_version_checker a separate pytest cli (ethereum#1537)
1 parent 468168d commit 4ab8559

24 files changed

Lines changed: 24 additions & 24 deletions

File tree

byzantium/eip198_modexp_precompile/test_modexp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from ethereum_test_tools.vm.opcode import Opcodes as Op
2121

2222
REFERENCE_SPEC_GIT_PATH = "EIPS/eip-198.md"
23-
REFERENCE_SPEC_VERSION = "9e393a79d9937f579acbdcb234a67869259d5a96"
23+
REFERENCE_SPEC_VERSION = "5c8f066acb210c704ef80c1033a941aa5374aac5"
2424

2525

2626
@dataclass(kw_only=True, frozen=True, repr=False)

cancun/eip1153_tstore/spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class ReferenceSpec:
1111
version: str
1212

1313

14-
ref_spec_1153 = ReferenceSpec("EIPS/eip-1153.md", "6f0be621c76a05a7b3aaf0e9297afd425c26e9d0")
14+
ref_spec_1153 = ReferenceSpec("EIPS/eip-1153.md", "1eb863b534a5a3e19e9c196ab2a7f3db4bb9da17")
1515

1616

1717
@dataclass(frozen=True)

cancun/eip1153_tstore/test_tload_calls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from ethereum_test_tools.vm.opcode import Opcodes as Op
1111

1212
REFERENCE_SPEC_GIT_PATH = "EIPS/eip-1153.md"
13-
REFERENCE_SPEC_VERSION = "2f8299df31bb8173618901a03a8366a3183479b0"
13+
REFERENCE_SPEC_VERSION = "1eb863b534a5a3e19e9c196ab2a7f3db4bb9da17"
1414

1515

1616
@pytest.mark.valid_from("Cancun")

cancun/eip1153_tstore/test_tload_reentrancy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from ethereum_test_tools.vm.opcode import Opcodes as Op
2424

2525
REFERENCE_SPEC_GIT_PATH = "EIPS/eip-1153.md"
26-
REFERENCE_SPEC_VERSION = "2f8299df31bb8173618901a03a8366a3183479b0"
26+
REFERENCE_SPEC_VERSION = "1eb863b534a5a3e19e9c196ab2a7f3db4bb9da17"
2727

2828

2929
class CallDestType(Enum):

cancun/eip1153_tstore/test_tstore_reentrancy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from ethereum_test_tools.vm.opcode import Opcodes as Op
2424

2525
REFERENCE_SPEC_GIT_PATH = "EIPS/eip-1153.md"
26-
REFERENCE_SPEC_VERSION = "2f8299df31bb8173618901a03a8366a3183479b0"
26+
REFERENCE_SPEC_VERSION = "1eb863b534a5a3e19e9c196ab2a7f3db4bb9da17"
2727

2828

2929
class CallDestType(Enum):

cancun/eip4788_beacon_root/spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ReferenceSpec:
1313
version: str
1414

1515

16-
ref_spec_4788 = ReferenceSpec("EIPS/eip-4788.md", "e7608fe8ac8a60934ca874f5aab7d5c1f4ff7782")
16+
ref_spec_4788 = ReferenceSpec("EIPS/eip-4788.md", "efcac43ef9aadd87dd4e0a2fbd14d5d1317eddf3")
1717

1818

1919
# Constants

cancun/eip5656_mcopy/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from copy import copy
77

88
REFERENCE_SPEC_GIT_PATH = "EIPS/eip-5656.md"
9-
REFERENCE_SPEC_VERSION = "2ade0452efe8124378f35284676ddfd16dd56ecd"
9+
REFERENCE_SPEC_VERSION = "d0cd8902e2243b66e2b9a858b691bc106cebddfc"
1010

1111

1212
def mcopy(*, src: int, dest: int, length: int, memory: bytes) -> bytes:

cancun/eip6780_selfdestruct/test_dynamic_create2_selfdestruct_collision.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from ethereum_test_tools.vm.opcode import Opcodes as Op
2727

2828
REFERENCE_SPEC_GIT_PATH = "EIPS/eip-6780.md"
29-
REFERENCE_SPEC_VERSION = "2f8299df31bb8173618901a03a8366a3183479b0"
29+
REFERENCE_SPEC_VERSION = "1b6a0e94cc47e859b9866e570391cf37dc55059a"
3030

3131

3232
@pytest.fixture

cancun/eip6780_selfdestruct/test_reentrancy_selfdestruct_revert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from ethereum_test_tools.vm.opcode import Opcodes as Op
2222

2323
REFERENCE_SPEC_GIT_PATH = "EIPS/eip-6780.md"
24-
REFERENCE_SPEC_VERSION = "2f8299df31bb8173618901a03a8366a3183479b0"
24+
REFERENCE_SPEC_VERSION = "1b6a0e94cc47e859b9866e570391cf37dc55059a"
2525

2626

2727
@pytest.fixture

cancun/eip6780_selfdestruct/test_selfdestruct.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from ethereum_test_tools.vm.opcode import Opcodes as Op
3131

3232
REFERENCE_SPEC_GIT_PATH = "EIPS/eip-6780.md"
33-
REFERENCE_SPEC_VERSION = "2f8299df31bb8173618901a03a8366a3183479b0"
33+
REFERENCE_SPEC_VERSION = "1b6a0e94cc47e859b9866e570391cf37dc55059a"
3434

3535
SELFDESTRUCT_DISABLE_FORK = Cancun
3636

0 commit comments

Comments
 (0)