How to set local testnet masternode? Got hot/cold normal masternode but can not run on testnet...
"masternode start
inbound port is not open. Please open it and try again. (19999 for testnet and 9999 for mainnet)"
If you already have "normal" setup you'll need different config file on both remote and local.
On both remote and local machine:
make new folder and copy darkcoin.conf there
open it and change ports 9999 to 19999
add line "testnet=1"
On remote:
check that your firewall allows port 19999, if not - open it
run daemon with -datadir option like "/path/to/test/darkcoind -datadir=path/to/your/dir" where "path/to/your/dir" is path to your folder from step 1
generate new masternodeprivkey "/path/to/test/darkcoind -datadir=path/to/your/dir masternode genkey" and replace old value in your config
restart daemon
On local:
replace old masternodeprivkey with new one in your config
run qt with -datadir option too (depends on your OS - fix link, bat, shell script)
Wait until both are synced with blockchain
start masternode as usual
EDIT: fixed conf --> datadir, it wouldn't let run both mainnet and testnet daemon/qt simultaneously if they are using the same folder
EDIT2: totally forgot about masternodeprivkey, fixed