Still unsure of how to make multiple MN though
How would u open 2 masternodes. I couldn't find out how to run 2 clients. Second one connects to the original wallet. Need to change some codes I believe. Or double computers for now but dev said he'll explain.
This is what I wrote on how to setup Crave MasterNodes. I've changed it to read how to setup 8Bit MasterNodes.
Read the following if you want to setup more then one master node using the same computer with one ip address.
You can change the port and the rpcport and setup more if you want.
You will need one copy of the data dir and the 8bit-qt.exe for each master node that you wan to run.
Here is an example of running three master nodes.
Three Different Folder that hold the block chain and .conf files
C:\SubFolders\8bitMasterNode1
C:\SubFolders\8bitMasterNode2
C:\SubFolders\8bitMasterNode3
Three different Folders that contain the 8bit-qt.exe and the .bat files to launch the masternode
c:\MyFiles\8bitMN1\
c:\MyFiles\8bitMN2\
c:\MyFiles\8bitMN3\
Then in each of the above folder you would put in the following .bat files to launch the master nodes.
StartMasterNode1.bat
8bit-qt -datadir=C:\SubFolders\8bitMasterNode1
StartMasterNode2.bat
8bit-qt -datadir=C:\SubFolders\8bitMasterNode2
StartMasterNode3.bat
8bit-qt -datadir=C:\SubFolders\8bitMasterNode3
Also in each of the data dir you need to put in a 8bit.conf file like the following.
Notice with each config they use a different port and a different rpcport for each 8bit.conf.
It is best to have staking=0 so it does not stake.
8bit.conf for use with 8bit Master Node 1
Code:
maxconnections=50
rpcuser=YourRPCUser
rpcpassword=YourRPCPassword
rpcport=30105
port=9999
gen=0
listen=1
server=1
daemon=1
staking=0
reservebalance=500
masternodeaddr=YouIPAddress:9999
masternode=1
masternodeprivkey=YourMasterKey
rpcallowip=127.0.0.1
8bit.conf for use with 8bit Master Node 2
Code:
maxconnections=50
rpcuser=YourRPCUser
rpcpassword=YourRPCPassword
rpcport=30106
port=9998
gen=0
listen=1
server=1
daemon=1
staking=0
reservebalance=500
masternodeaddr=YouIPAddress:9998
masternode=1
masternodeprivkey=YourMasterKey
rpcallowip=127.0.0.1
8bit.conf for use with 8bit Master Node 3
Code:
maxconnections=50
rpcuser=YourRPCUser
rpcpassword=YourRPCPassword
rpcport=30107
port=9997
gen=0
listen=1
server=1
daemon=1
staking=0
reservebalance=500
masternodeaddr=YouIPAddress:9997
masternode=1
masternodeprivkey=YourMasterKey
rpcallowip=127.0.0.1