Skip to content

Commit 31a541c

Browse files
committed
added changelog
1 parent 0b49a18 commit 31a541c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

docs/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ Users can select any of the artifacts depending on their testing needs for their
4141

4242
#### `execute`
4343

44-
- ✨ Add `blob_transaction_test` execute test spec, which allows tests that send blob transactions to a running client and verifying its `engine_getBlobsVX` endpoint behavior ([#1644](https://github.com/ethereum/execution-spec-tests/pull/1644)).
44+
- ✨ Added new `Blob` class which can use the ckzg library to generate valid blobs at runtime ([#1614](https://github.com/ethereum/execution-spec-tests/pull/1614)).
45+
- ✨ Added `blob_transaction_test` execute test spec, which allows tests that send blob transactions to a running client and verifying its `engine_getBlobsVX` endpoint behavior ([#1644](https://github.com/ethereum/execution-spec-tests/pull/1644)).
4546

4647
### 📋 Misc
4748

tests/cancun/eip4844_blobs/test_blob_txs_full.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
from ethereum_test_base_types.base_types import Hash
1212
from ethereum_test_forks import Fork
13-
from ethereum_test_forks.forks.forks import Cancun
1413
from ethereum_test_tools import (
1514
Address,
1615
Alloc,
@@ -246,7 +245,7 @@ def generate_full_blob_tests(
246245
pytest.param(
247246
[ # Txs
248247
[ # Blobs per transaction
249-
Blob.from_fork(Cancun),
248+
Blob.from_fork(fork),
250249
]
251250
],
252251
[True],
@@ -255,7 +254,7 @@ def generate_full_blob_tests(
255254
pytest.param(
256255
[ # Txs
257256
[ # Blobs per transaction
258-
Blob.from_fork(Cancun),
257+
Blob.from_fork(fork),
259258
]
260259
for _ in range(max_blobs)
261260
],
@@ -265,7 +264,7 @@ def generate_full_blob_tests(
265264
pytest.param(
266265
[ # Txs
267266
[ # Blobs per transaction
268-
Blob.from_fork(Cancun),
267+
Blob.from_fork(fork),
269268
]
270269
for _ in range(max_blobs)
271270
],

whitelist.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,3 +1014,5 @@ qube
10141014
nagydani
10151015
guido
10161016
marcin
1017+
peerdas
1018+
ckzg

0 commit comments

Comments
 (0)