Skip to content

Commit 72f5190

Browse files
committed
Fix lint
1 parent 1ecf334 commit 72f5190

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/core/pyspec/eth2spec/test/eip7594/unittests/test_networking.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
from eth2spec.test.helpers.execution_payload import (
1616
compute_el_block_hash,
1717
)
18-
from eth2spec.test.helpers.sharding import (
19-
get_sample_opaque_tx,
18+
from eth2spec.test.helpers.blob import (
19+
get_sample_blob_tx,
2020
)
2121

2222

@@ -25,7 +25,7 @@
2525

2626
def compute_data_column_sidecar(spec, state):
2727
rng = random.Random(5566)
28-
opaque_tx, blobs, blob_kzg_commitments, _ = get_sample_opaque_tx(spec, blob_count=2)
28+
opaque_tx, blobs, blob_kzg_commitments, _ = get_sample_blob_tx(spec, blob_count=2)
2929
block = get_random_ssz_object(
3030
rng,
3131
spec.BeaconBlock,

0 commit comments

Comments
 (0)