fix ssz imports

This commit is contained in:
protolambda 2019-06-01 01:51:09 +02:00
parent 1c734d30a0
commit 33233c98ff
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623
8 changed files with 8 additions and 8 deletions

View File

@ -16,7 +16,7 @@ from eth2spec.test.helpers.bitfields import set_bitfield_bit
from eth2spec.test.helpers.block import build_empty_block_for_next_slot, sign_block from eth2spec.test.helpers.block import build_empty_block_for_next_slot, sign_block
from eth2spec.test.helpers.keys import privkeys from eth2spec.test.helpers.keys import privkeys
from eth2spec.utils.bls import bls_sign, bls_aggregate_signatures from eth2spec.utils.bls import bls_sign, bls_aggregate_signatures
from eth2spec.utils.minimal_ssz import hash_tree_root from eth2spec.utils.ssz.ssz_impl import hash_tree_root
def build_attestation_data(state, slot, shard): def build_attestation_data(state, slot, shard):

View File

@ -8,7 +8,7 @@ from eth2spec.phase0.spec import (
) )
from eth2spec.test.helpers.keys import privkeys from eth2spec.test.helpers.keys import privkeys
from eth2spec.utils.bls import bls_sign, only_with_bls from eth2spec.utils.bls import bls_sign, only_with_bls
from eth2spec.utils.minimal_ssz import signing_root, hash_tree_root from eth2spec.utils.ssz.ssz_impl import signing_root, hash_tree_root
# Fully ignore the function if BLS is off, beacon-proposer index calculation is slow. # Fully ignore the function if BLS is off, beacon-proposer index calculation is slow.

View File

@ -3,7 +3,7 @@ import eth2spec.phase0.spec as spec
from eth2spec.phase0.spec import get_domain from eth2spec.phase0.spec import get_domain
from eth2spec.utils.bls import bls_sign from eth2spec.utils.bls import bls_sign
from eth2spec.utils.minimal_ssz import signing_root from eth2spec.utils.ssz.ssz_impl import signing_root
def sign_block_header(state, header, privkey): def sign_block_header(state, header, privkey):

View File

@ -5,7 +5,7 @@ from eth2spec.phase0.spec import get_domain, DepositData, verify_merkle_branch,
from eth2spec.test.helpers.keys import pubkeys, privkeys from eth2spec.test.helpers.keys import pubkeys, privkeys
from eth2spec.utils.bls import bls_sign from eth2spec.utils.bls import bls_sign
from eth2spec.utils.merkle_minimal import calc_merkle_tree_from_leaves, get_merkle_root, get_merkle_proof from eth2spec.utils.merkle_minimal import calc_merkle_tree_from_leaves, get_merkle_root, get_merkle_proof
from eth2spec.utils.minimal_ssz import signing_root from eth2spec.utils.ssz.ssz_impl import signing_root
def build_deposit_data(state, pubkey, privkey, amount, withdrawal_credentials, signed=False): def build_deposit_data(state, pubkey, privkey, amount, withdrawal_credentials, signed=False):

View File

@ -3,7 +3,7 @@ import eth2spec.phase0.spec as spec
from eth2spec.phase0.spec import Eth1Data, ZERO_HASH, get_active_validator_indices from eth2spec.phase0.spec import Eth1Data, ZERO_HASH, get_active_validator_indices
from eth2spec.test.helpers.keys import pubkeys from eth2spec.test.helpers.keys import pubkeys
from eth2spec.utils.minimal_ssz import hash_tree_root from eth2spec.utils.ssz.ssz_impl import hash_tree_root
def build_mock_validator(i: int, balance: int): def build_mock_validator(i: int, balance: int):

View File

@ -5,7 +5,7 @@ from eth2spec.phase0.spec import get_current_epoch, get_active_validator_indices
from eth2spec.test.helpers.keys import pubkeys, privkeys from eth2spec.test.helpers.keys import pubkeys, privkeys
from eth2spec.test.helpers.state import get_balance from eth2spec.test.helpers.state import get_balance
from eth2spec.utils.bls import bls_sign from eth2spec.utils.bls import bls_sign
from eth2spec.utils.minimal_ssz import signing_root from eth2spec.utils.ssz.ssz_impl import signing_root
def get_valid_transfer(state, slot=None, sender_index=None, amount=None, fee=None, signed=False): def get_valid_transfer(state, slot=None, sender_index=None, amount=None, fee=None, signed=False):

View File

@ -3,7 +3,7 @@ import eth2spec.phase0.spec as spec
from eth2spec.phase0.spec import VoluntaryExit, get_domain from eth2spec.phase0.spec import VoluntaryExit, get_domain
from eth2spec.utils.bls import bls_sign from eth2spec.utils.bls import bls_sign
from eth2spec.utils.minimal_ssz import signing_root from eth2spec.utils.ssz.ssz_impl import signing_root
def build_voluntary_exit(state, epoch, validator_index, privkey, signed=False): def build_voluntary_exit(state, epoch, validator_index, privkey, signed=False):

View File

@ -3,7 +3,7 @@ from copy import deepcopy
import eth2spec.phase0.spec as spec import eth2spec.phase0.spec as spec
from eth2spec.utils.bls import bls_sign from eth2spec.utils.bls import bls_sign
from eth2spec.utils.minimal_ssz import signing_root from eth2spec.utils.ssz.ssz_impl import signing_root
from eth2spec.phase0.spec import ( from eth2spec.phase0.spec import (
# SSZ # SSZ
VoluntaryExit, VoluntaryExit,