From 8d6b28b752d7b26972297ffe7e0edae9f92d2671 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Mon, 16 Oct 2023 17:43:23 +0800 Subject: [PATCH] set default bls lib to `fastest_bls` --- tests/core/pyspec/eth2spec/utils/bls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/core/pyspec/eth2spec/utils/bls.py b/tests/core/pyspec/eth2spec/utils/bls.py index 7dd9597eb..10994bf31 100644 --- a/tests/core/pyspec/eth2spec/utils/bls.py +++ b/tests/core/pyspec/eth2spec/utils/bls.py @@ -48,8 +48,8 @@ class fastest_bls: # Flag to make BLS active or not. Used for testing, do not ignore BLS in production unless you know what you are doing. bls_active = True -# To change bls implementation, default to PyECC for correctness. Milagro is a good faster alternative. -bls = py_ecc_bls +# Default to fastest_bls +bls = fastest_bls STUB_SIGNATURE = b'\x11' * 96 STUB_PUBKEY = b'\x22' * 48