mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-26 22:39:49 +00:00
c808f17a37
Incorporates the latest changes to the light client sync protocol based on Devconnect AMS feedback. Note that this breaks compatibility with the previous prototype, due to changes to data structures and endpoints. See https://github.com/ethereum/consensus-specs/pull/2802
25 lines
866 B
Nim
25 lines
866 B
Nim
# beacon_chain
|
|
# Copyright (c) 2021-2022 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
{.used.}
|
|
|
|
import
|
|
chronicles
|
|
|
|
import
|
|
./test_fixture_fork,
|
|
./test_fixture_merkle_single_proof,
|
|
./test_fixture_operations,
|
|
./test_fixture_sanity_blocks,
|
|
./test_fixture_sanity_slots,
|
|
./test_fixture_ssz_consensus_objects,
|
|
./test_fixture_state_transition_epoch,
|
|
./test_fixture_sync_protocol_light_client_sync,
|
|
./test_fixture_sync_protocol_update_ranking,
|
|
./test_fixture_sync_protocol,
|
|
./test_fixture_transition
|