Skip to content

Commit 9582bd6

Browse files
committed
RESET: Incomplete changes
1 parent d756068 commit 9582bd6

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
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+
"""
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

0 commit comments

Comments
 (0)