Set `--bls-type` default value to `fastest` (#3567)
This commit is contained in:
parent
e52594634c
commit
7e10d8ad2b
|
@ -44,7 +44,7 @@ def pytest_addoption(parser):
|
|||
help="bls-default: make tests that are not dependent on BLS run without BLS"
|
||||
)
|
||||
parser.addoption(
|
||||
"--bls-type", action="store", type=str, default="py_ecc", choices=["py_ecc", "milagro", "arkworks", "fastest"],
|
||||
"--bls-type", action="store", type=str, default="fastest", choices=["py_ecc", "milagro", "arkworks", "fastest"],
|
||||
help=(
|
||||
"bls-type: use specified BLS implementation;"
|
||||
"fastest: use milagro for signatures and arkworks for everything else (e.g. KZG)"
|
||||
|
|
Loading…
Reference in New Issue