mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-09 05:52:45 +00:00
31bf8fa408
* remove all but one UnusedImport warning * bump a few more spec version references from v0.10.1 to v0.11.1 * more v0.10.1 spec reference updates/removals * yet more v0.10.1 spec reference updates
13 lines
425 B
Nim
13 lines
425 B
Nim
# Don't forgot to run the following files as main modules:
|
|
# - beacon_chain/fork_choice/proto_array.nim (sanity checks for tiebreak)
|
|
# - beacon_chain/fork_choice/fork_choice.nim (sanity checks for compute_deltas)
|
|
|
|
{.used.}
|
|
|
|
import ../testutil, std/unittest
|
|
|
|
# include to be able to use "suiteReport"
|
|
import ./interpreter
|
|
suiteReport "Fork Choice + Finality " & preset():
|
|
include scenarios/[no_votes, votes, ffg_01, ffg_02]
|