This commit is contained in:
Justin Traglia 2024-10-09 11:55:49 -05:00
parent 1ecf334969
commit 72f51900a7
No known key found for this signature in database
GPG Key ID: F099C9CD25DF82A1
1 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@ from eth2spec.test.helpers.block import (
from eth2spec.test.helpers.execution_payload import ( from eth2spec.test.helpers.execution_payload import (
compute_el_block_hash, compute_el_block_hash,
) )
from eth2spec.test.helpers.sharding import ( from eth2spec.test.helpers.blob import (
get_sample_opaque_tx, get_sample_blob_tx,
) )
@ -25,7 +25,7 @@ from eth2spec.test.helpers.sharding import (
def compute_data_column_sidecar(spec, state): def compute_data_column_sidecar(spec, state):
rng = random.Random(5566) rng = random.Random(5566)
opaque_tx, blobs, blob_kzg_commitments, _ = get_sample_opaque_tx(spec, blob_count=2) opaque_tx, blobs, blob_kzg_commitments, _ = get_sample_blob_tx(spec, blob_count=2)
block = get_random_ssz_object( block = get_random_ssz_object(
rng, rng,
spec.BeaconBlock, spec.BeaconBlock,