Skip to content

Commit 9755dba

Browse files
committed
fix(specs-amsterdam): Lint fails
1 parent 9f01b3c commit 9755dba

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/ethereum/forks/amsterdam/vm/gas.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@
7373
BLOB_MIN_GASPRICE = Uint(1)
7474
BLOB_BASE_FEE_UPDATE_FRACTION = Uint(11684671)
7575

76-
TARGET_STATE_GROWTH_PER_YEAR = Uint(100 * 1024**3)
77-
BLOCKS_PER_YEAR = Uint(2_628_000)
78-
COST_PER_STATE_BYTE_SIGNIFICANT_BITS = Uint(5)
79-
COST_PER_STATE_BYTE_OFFSET = Uint(9578)
76+
TARGET_STATE_GROWTH_PER_YEAR = Uint(100 * 1024**3) # noqa: F841
77+
BLOCKS_PER_YEAR = Uint(2_628_000) # noqa: F841
78+
COST_PER_STATE_BYTE_SIGNIFICANT_BITS = Uint(5) # noqa: F841
79+
COST_PER_STATE_BYTE_OFFSET = Uint(9578) # noqa: F841
8080

8181
STATE_BYTES_PER_NEW_ACCOUNT = Uint(112)
8282
STATE_BYTES_PER_STORAGE_SET = Uint(32)

vulture_whitelist.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@
110110
Trace.returnData
111111
Trace.refund
112112
Trace.opName
113+
Trace.stateGas
114+
Trace.stateGasCost
113115
FinalTrace.gasUsed
114116

115117
# src/ethereum_spec_tools/lint/lints/glacier_forks_hygiene.py

0 commit comments

Comments
 (0)