Skip to content

Commit 5753be7

Browse files
committed
Fix blobs cast
1 parent 7b0b7df commit 5753be7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/core/pyspec/eth2spec/test/helpers/fork_choice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def add_block(spec,
178178

179179
# Check blob_data
180180
if blob_data is not None:
181-
blobs = spec.List[spec.Blob, spec.config.MAX_BLOB_COMMITMENTS_PER_BLOCK](blob_data.blobs)
181+
blobs = spec.List[spec.Blob, spec.MAX_BLOB_COMMITMENTS_PER_BLOCK](blob_data.blobs)
182182
blobs_root = blobs.hash_tree_root()
183183
yield get_blobs_file_name(blobs_root=blobs_root), blobs
184184

0 commit comments

Comments
 (0)