fix a typo in the connect script
This commit is contained in:
parent
406df9d44f
commit
371d27168a
|
@ -12,11 +12,11 @@ NIM_FLAGS="-d:release --lineTrace:on -d:chronicles_log_level=DEBUG -d:SECONDS_PE
|
||||||
|
|
||||||
BEACON_NODE_BIN=${NETWORK_NAME}_node
|
BEACON_NODE_BIN=${NETWORK_NAME}_node
|
||||||
|
|
||||||
nim c $NIM_FLAGS -o:$BEACON_NODE_BIN beacon_chain/beacon_node
|
echo nim c $NIM_FLAGS -o:"./$BEACON_NODE_BIN" beacon_chain/beacon_node
|
||||||
|
|
||||||
if [ ! -d ~/.cache/nimbus/BeaconNode/$NETWORK_NAME/validators ]; then
|
if [ ! -d ~/.cache/nimbus/BeaconNode/$NETWORK_NAME/validators ]; then
|
||||||
$BEACON_NODE_BIN --network=$NETWORK_NAME importValidator
|
./$BEACON_NODE_BIN --network=$NETWORK_NAME importValidator
|
||||||
fi
|
fi
|
||||||
|
|
||||||
$BEACON_NODE_BIN --network=$NETWORK_NAME
|
./$BEACON_NODE_BIN --network=$NETWORK_NAME
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue