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.
15 lines
359 B
15 lines
359 B
#!/bin/bash
|
|
|
|
cd ~/SuperNET/iguana
|
|
|
|
if [ -z "$PASSPHRASE" ]; then
|
|
echo "No PASSPHRASE environment variable"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$COINS" ]; then
|
|
source ~/SuperNET/iguana/exchanges/coins
|
|
COINS=$coins
|
|
fi
|
|
|
|
exec ./marketmaker "{\"gui\":\"nogui\", \"client\":1, \"docker\":1, \"userhome\":\"/${HOME#"/"}\", \"passphrase\":\"$PASSPHRASE\", \"coins\":$COINS}"
|
|
|