mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
17 lines
434 B
Bash
17 lines
434 B
Bash
#!/bin/bash
|
|
#
|
|
# Start arbitrator daemon on Monero's stagenet (Haveno testnet)
|
|
|
|
runArbitrator() {
|
|
./haveno-daemon --baseCurrencyNetwork=XMR_STAGENET \
|
|
--useLocalhostForP2P=false \
|
|
--useDevPrivilegeKeys=false \
|
|
--nodePort=7777 \
|
|
--appName=haveno-XMR_STAGENET_arbitrator \
|
|
--xmrNode=http://127.0.0.1:38088 \
|
|
--xmrNodeUsername=admin \
|
|
--xmrNodePassword=password
|
|
}
|
|
|
|
cd /home/haveno/haveno && \
|
|
runArbitrator |