Post
Topic
Board Announcements (Altcoins)
Merits 12 from 1 user
Re: [ANN] Terracoin (TRC) - Est 2012
by
hanzac
on 18/09/2018, 09:39:52 UTC
⭐ Merited by helipotte (12)
Can the developers at least add a switch to allow masternode / wallet to run together?  I for one don't use a VPS and never will.  Have never lost money to an attack.  

Have been running a Terracoin node in one way or another since 2012.  I don't want to sound demanding and GREATLY appreciate all the improvements the dev's have

made to this coin.  Also, I don't need to be protected.  Thank you for clarifying this.
You can start two instances on your desktop PC if you need to run both wallet and masternode.

Here is my shortcut cmd line: C:\terracoin\terracoind.exe -conf=H:/Terracoin/terracoin.conf
and the H:/Terracoin/terracoin.conf:
Code:
datadir=H:/Terracoin
mnconf=H:/Terracoin/masternode.conf
server=1
daemon=1
rest=1
upnp=1
port=13333
rpcport=13332
keypool=10
#txindex=1
addnode=explorer.terracoin.io
rpcallowip=127.0.0.1
rpcuser=terracoinrpc
rpcpassword=TERRACOIN_RPC_PASSWORD
externalip=YOUR_EXTERNAL_IP:13333
masternode=1
masternodeprivkey=MASTERNODE_PRIVKEY
and the H:/Terracoin/masternode.conf is the same as usual.

For the wallet instance, you'll need to change the port and rpcport to avoid conflicts and set masternode=0. Then run with C:\terracoin\terracoin-qt.exe -conf=WALLET_CONF_PATH/terracoin.conf, or you just use default conf path by removing -conf=...