Improved run.sh, additional stop.sh and bumped genesis block timestamp in blockchain.json

This commit is contained in:
catbref
2020-02-04 12:56:07 +00:00
parent 07d4d6f11d
commit 1cb2935cad
3 changed files with 18 additions and 1 deletions

10
stop.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
echo 'Calling GET /admin/stop on local Qortal node'
if curl --url http://localhost:12391/admin/stop 1>/dev/null 2>&1; then
echo "Qortal node responded and should be shutting down"
exit 0
else
echo "No response from Qortal node - not running?"
exit 1
fi