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.
 
 
 
 

17 lines
529 B

#!/bin/bash
set -eo pipefail
# I mine AC to another pubkey
pubkey=032db8d58edd3b6e0ec9faab28adde91d01b388472390d2500f5983f536def29d1
overide_args="${@}"
delay=1
seed_ip=`getent hosts zero.kolo.supernet.org | awk '{ print $1 }'`
# start verus here as its using a diffrent komodod
verusd -pubkey=$pubkey -addnode=$seed_ip $args &
sleep $delay
# List all AC from main repo and start them
~/komodo/src/listassetchainparams | while read args; do
komodod $args $overide_args -pubkey=$pubkey -addnode=$seed_ip &
sleep $delay
done