In the end, get_merkle_root is back

This commit is contained in:
Hsiao-Wei Wang
2019-06-29 02:16:16 +08:00
parent 2252142e01
commit 4dc526fbb7
6 changed files with 59 additions and 24 deletions

View File

@@ -11,7 +11,8 @@ from typing import (
)
PHASE0_IMPORTS = '''from typing import (
PHASE0_IMPORTS = '''from math import log2
from typing import (
Any, Callable, Dict, Set, Sequence, Tuple,
)
@@ -36,7 +37,8 @@ from eth2spec.utils.bls import (
from eth2spec.utils.hash_function import hash
'''
PHASE1_IMPORTS = '''from typing import (
PHASE1_IMPORTS = '''from math import log2
from typing import (
Any, Callable, Dict, Optional, Set, Sequence, MutableSequence, Tuple,
)