From 0f5f155d1b67e150428edc59235b9589edea5d71 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Fri, 17 May 2024 14:38:58 +0800 Subject: [PATCH] fix typo (#3771) --- tests/core/pyspec/eth2spec/utils/bls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/pyspec/eth2spec/utils/bls.py b/tests/core/pyspec/eth2spec/utils/bls.py index 666de68094..59e24109c6 100644 --- a/tests/core/pyspec/eth2spec/utils/bls.py +++ b/tests/core/pyspec/eth2spec/utils/bls.py @@ -1,5 +1,5 @@ from py_ecc.bls import G2ProofOfPossession as py_ecc_bls -from py_ecc.bls.g2_primatives import signature_to_G2 as _signature_to_G2 +from py_ecc.bls.g2_primitives import signature_to_G2 as _signature_to_G2 from py_ecc.optimized_bls12_381 import ( # noqa: F401 G1 as py_ecc_G1, G2 as py_ecc_G2,