So, if I wanted to make a custom altcoin pool without P2Pool, or the other Linux pool creating services, could I do the following?
First, I would go into the TestCoin appdata folder, and make TestCoin.conf. I put inside
server=1
listen=1
daemon=1
rpcuser=1
rpcpassword=x
rpcallowip=*
rpcport=6376
port=6375
And then ran CPUMiner with the following,
minerd -a scrypt -o http://localhost:6376 -u 1 -p x --coinbase-addr 4DwDhdrb52qz3WjGqLATb9rURNGrykNT2B
It will mine fine. But, if I wanted other people to join, they could replace localhost, with my public IP, and coinbase-addr with their address, right? Or would that just solo mine on different computers, while connecting to my daemon and port forwarded wallet.
I'm curious.