You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
282 B
11 lines
282 B
#! /bin/sh -e
|
|
|
|
. `dirname $0`/vars.sh
|
|
|
|
[ ! -f $DATADIR/regtest/bitcoind.pid ] || BITCOIN_PID=`cat $DATADIR/regtest/bitcoind.pid`
|
|
|
|
$CLI stop
|
|
sleep 1 # Make sure socket is closed.
|
|
|
|
# Now make sure it's dead.
|
|
if [ -n "$BITCOIN_PID" ]; then kill -9 $BITCOIN_PID 2>/dev/null || true; fi
|
|
|