No "import *"

This commit is contained in:
Hsiao-Wei Wang 2019-05-09 13:45:00 +08:00
parent d7c1305ce4
commit ef41d7a064
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4
1 changed files with 10 additions and 2 deletions

View File

@ -12,8 +12,16 @@ from typing import (
NewType,
Tuple,
)
from eth2spec.utils.minimal_ssz import *
from eth2spec.utils.bls_stub import *
from eth2spec.utils.minimal_ssz import (
SSZType,
hash_tree_root,
signing_root,
)
from eth2spec.utils.bls_stub import (
bls_aggregate_pubkeys,
bls_verify,
bls_verify_multiple,
)
# stub, will get overwritten by real var
SLOTS_PER_EPOCH = 64