mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-24 21:40:03 +00:00
cd993ca418
* consolidate slot sanity checks across forks * use `new` rather than `init` for constructor of `ref`s
17 lines
642 B
Nim
17 lines
642 B
Nim
# beacon_chain
|
|
# Copyright (c) 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
|
|
./test_fixture_fork,
|
|
./test_fixture_operations,
|
|
./test_fixture_sanity_blocks,
|
|
./test_fixture_ssz_consensus_objects,
|
|
./test_fixture_state_transition_epoch,
|
|
./test_fixture_transition
|