mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-06 02:52:20 +00:00
9 lines
184 B
Bash
9 lines
184 B
Bash
|
#!/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
|