mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-17 18:11:21 +00:00
14 lines
223 B
Bash
14 lines
223 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eu
|
||
|
cd $(dirname "$0")
|
||
|
|
||
|
NETWORK_NAME=$1
|
||
|
source "$NETWORK_NAME.env"
|
||
|
|
||
|
cd ..
|
||
|
|
||
|
NIM_FLAGS="-d:debug -d:SHARD_COUNT=$SHARD_COUNT -d:SLOTS_PER_EPOCH=$SLOTS_PER_EPOCH"
|
||
|
nim c $NIM_FLAGS -r beacon_chain/beacon_node
|
||
|
|