File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
tests/prague/eip7623_increase_calldata_cost Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ """
2+ abstract: Test [EIP-7623: Increase calldata cost](https://eips.ethereum.org/EIPS/eip-7623)
3+ Tests for [EIP-7623: Increase calldata cost](https://eips.ethereum.org/EIPS/eip-7623).
4+ """
Original file line number Diff line number Diff line change 1+ """
2+ abstract: Test [EIP-7623: Increase calldata cost to decrease the maximum block size](https://eips.ethereum.org/EIPS/eip-7623)
3+ Tests for [EIP-7623: Increase calldata cost to decrease the maximum block size](https://eips.ethereum.org/EIPS/eip-7623).
4+ """ # noqa: E501
5+
6+ from typing import List , Mapping
7+
8+ import pytest
9+
10+ from ethereum_test_forks import Prague
11+ from ethereum_test_tools import (
12+ Account ,
13+ Environment ,
14+ StateTestFiller ,
15+ TestAddress ,
16+ Transaction ,
17+ ceiling_division ,
18+ )
19+ from ethereum_test_tools .vm import Opcodes as Op
20+
21+ REFERENCE_SPEC_GIT_PATH = "EIPS/eip-7623.md"
22+ REFERENCE_SPEC_VERSION = "a285272475ae032ddcf97b9141414a0e4f3e9157"
23+
24+ ENABLE_FORK = Prague
25+ pytestmark = pytest .mark .valid_from (str (ENABLE_FORK ))
26+
27+ """
28+ General constants used for testing purposes
29+ """
30+
31+ STANDARD_TOKEN_COST = 4
32+ TOTAL_COST_FLOOR_PER_TOKEN = 17
You can’t perform that action at this time.
0 commit comments