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.
16 lines
382 B
16 lines
382 B
#!/bin/bash
|
|
source ~/komodo/src/pubkey.txt
|
|
args="-pubkey=$pubkey -connect=172.16.16.11" # -addnode=37.9.62.186 -addnode=209.58.144.205 -addnode=167.99.69.47"
|
|
|
|
echo "Starting Bitcoin"
|
|
bitcoind &
|
|
sleep 30
|
|
echo "Starting Komodo"
|
|
komodod -notary $args &
|
|
sleep 60
|
|
echo "Starting Chips"
|
|
chipsd $args &
|
|
echo "Starting GameCredits"
|
|
gamecreditsd $args &
|
|
#echo "Starting Hush"
|
|
#hushd $args &
|
|
|