Skip to content

Commit b681552

Browse files
committed
Use bls.use_fastest() in default testgen
1 parent fbccef3 commit b681552

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/core/pyspec/eth2spec/gen_helpers/gen_from_tests/gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def get_provider(create_provider_fn: Callable[[SpecForkName, PresetBaseName, str
7777

7878
def get_create_provider_fn(runner_name: str) -> Callable[[SpecForkName, str, str, PresetBaseName], TestProvider]:
7979
def prepare_fn() -> None:
80-
bls.use_milagro()
80+
bls.use_fastest()
8181
return
8282

8383
def create_provider(fork_name: SpecForkName, preset_name: PresetBaseName,

tests/core/pyspec/eth2spec/test/eip7594/merkle_proof/test_single_merkle_proof.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
def _run_blob_kzg_commitments_merkle_proof_test(spec, state, rng=None):
25-
opaque_tx, blobs, blob_kzg_commitments, proofs = get_sample_opaque_tx(spec, blob_count=1)
25+
opaque_tx, blobs, blob_kzg_commitments, _ = get_sample_opaque_tx(spec, blob_count=1)
2626
if rng is None:
2727
block = build_empty_block_for_next_slot(spec, state)
2828
else:

0 commit comments

Comments
 (0)