Skip to content

Commit 00e2dc0

Browse files
committed
post rebase fixes
1 parent d07a600 commit 00e2dc0

File tree

5 files changed

+3
-36
lines changed

5 files changed

+3
-36
lines changed

.flake8

Lines changed: 0 additions & 32 deletions
This file was deleted.

eest_tests/execution-spec-tests

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ test = [
164164
]
165165
lint = [
166166
"codespell==2.4.1",
167-
"mypy==1.14.1",
167+
"mypy==1.17.0",
168168
"ruff==0.11.8",
169169
"vulture==2.14.0",
170170
]

src/ethereum/osaka/vm/gas.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
GAS_COLD_ACCOUNT_ACCESS = Uint(2600)
6767
GAS_WARM_ACCESS = Uint(100)
6868
GAS_INIT_CODE_WORD_COST = Uint(2)
69-
GAS_EXCESS_WORD_COST = Uint(2)
7069
GAS_BLOBHASH_OPCODE = Uint(3)
7170
GAS_POINT_EVALUATION = Uint(50000)
7271

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def fetch_git(self, url: str, location: str, commit_hash: str) -> None:
135135
last_exception = e
136136

137137
if last_exception:
138-
raise last_exception
138+
raise last_exception from None
139139

140140
# Check if the submodule head matches the parent commit
141141
# If not, update the submodule

0 commit comments

Comments
 (0)