mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-09 03:31:45 +00:00
The testnet will be on the local computer and have 1 eth1 node, 4 beacon nodes, 1 validator with 20 vc's.
9 lines
184 B
Bash
Executable File
9 lines
184 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Stop all processes that were started with start_local_testnet.sh
|
|
|
|
source ./vars.env
|
|
|
|
PID_FILE=$TESTNET_DIR/PIDS.pid
|
|
./kill_processes.sh $PID_FILE
|
|
rm -f $PID_FILE
|