When setting up a cold/hot wallet do you need a local Ip anywhere? Or anything else that isn't in the guide i can't seem to get this bloody thing running no matter what!
I'm assuming your hot wallet (VPS) is linux... Your Tokugawa.conf file should have:
rpcuser=yourusername
rpcpassword=yourpassword
rpcallowip=127.0.0.1
daemon=1
server=1
listen=1
masternodeaddr=x.x.x.x:21117
masternode=1
masternodeprivkey=privatekey
Local IP is not needed. I ran into problems setting up my first Tokugawa masternode too. Figured out the problem was some of the dependencies were not installing. Try installing each one individually and see if any give you an error. For example, don't use:
sudo apt-get install build-essential libtool autotools-dev pkg-config libssl-dev libboost-all-dev autoconf automake libdb4.8 libdb4.8-dev libdb4.8++-dev
Instead do:
sudo apt-get install build-essential
sudo apt-get install libtool
sudo apt-get install autotools-dev
...