Also, I cannot get the new wallet to listen for connections no matter the settings. I am running on Windows. I have tried disabling the firewall, changing ports, but no joy.
Any suggestions?
sexcoin.conf settings I am using.
daemon=1
listen=1
rpcuser=ABCDEFGHIJKLMNOP (no not really)
rpcpassword=ABCDEFGHIJKLMNOP (no not really)
rpcallowip=192.168.1.0/24
rpcallowip=127.0.0.1
rpcport=9560
addnode=dnsseed.sexcoin.info
addnode=dnsseed.lavajumper.com
addnode=74.208.174.17
addnode=66.172.10.97
rpcport should be 9561, rpcport is the port where your miner talks to your sexcoin client to get work.
9560 is the network port ("port=9560"), for talking to the rest of the network. This is the port that should be passed back through the firewall.
{
"pools" : [
{
"url" : "127.0.0.1:9560",
"user" : "ABCDEFGHIJKLMNOP (no not really)",
"pass" : "ABCDEFGHIJKLMNOP (no not really)"
},
This won't work for 'stratum only' miners. Your miner will need to speak 'getwork'... and the url would be:
"url" : "127.0.0.1:9561",
If you are running p2pool there are some other settings. Check the p2pool docs.