mirror of
https://github.com/logos-blockchain/logos-blockchain-specs.git
synced 2026-03-20 02:33:15 +00:00
Fix imports
This commit is contained in:
parent
fd1f92e12d
commit
33cdf7f25f
@ -4,7 +4,7 @@ from eth2spec.deneb.mainnet import KZGProof as Proof, BLSFieldElement
|
||||
from eth2spec.utils import bls
|
||||
|
||||
from da.kzg_rs.common import G1, BLS_MODULUS, PRIMITIVE_ROOT
|
||||
from da.kzg_rs.fft import fft, ifft, fft_g1, ifft_g1
|
||||
from da.kzg_rs.fft import fft, fft_g1, ifft_g1
|
||||
from da.kzg_rs.poly import Polynomial
|
||||
from da.kzg_rs.roots import compute_roots_of_unity
|
||||
from da.kzg_rs.utils import is_power_of_two
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
from unittest import TestCase
|
||||
|
||||
from da.kzg_rs.roots import compute_roots_of_unity
|
||||
from da.kzg_rs.common import BLS_MODULUS
|
||||
from fft import fft, ifft
|
||||
from .roots import compute_roots_of_unity
|
||||
from .common import BLS_MODULUS
|
||||
from .fft import fft, ifft
|
||||
|
||||
|
||||
class TestFFT(TestCase):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user