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
756 B
17 lines
756 B
7 years ago
|
@echo off
|
||
|
set USERHOME=%APPDATA:\=\\%
|
||
|
rem [!] Coins config now taked from coins.json file, no need to put in environment variable
|
||
|
rem ---------------------------------------------------------------------------------------
|
||
|
rem set COINS=[{\"coin\":\"REVS\",\"active\":1,\"asset\":\"REVS\",\"rpcport\":10196}]
|
||
|
rem marketmaker "{\"gui\":\"nogui\",\"client\":1, \"userhome\":\"%USERHOME%\", \"passphrase\":\"mypassphrase\", \"coins\":%COINS%}"
|
||
|
|
||
|
set COINS=\"\"
|
||
|
set /p PASSPHRASE=<passphrase
|
||
|
rem , \"canbind\":1
|
||
|
rem marketmaker "{\"gui\":\"nogui\",\"client\":1, \"userhome\":\"%USERHOME%\", \"passphrase\":\"%PASSPHRASE%\"}" 1> marketmaker.log 2>&1
|
||
|
marketmaker "{\"gui\":\"nogui\",\"client\":1, \"userhome\":\"%USERHOME%\", \"passphrase\":\"%PASSPHRASE%\"}"
|
||
|
|
||
|
|
||
|
|
||
|
|