thank you
And how would i send my hash to the same wallet from my 2nd computer through the internet ?
Here is how:
Also you can mine to a specific address (this is useful if you are mining on several computers). To do so:
1. Use existing or better generate a new address.
2. Open debug console (Tools -> Debug Console) and enter:
dumpprivkey SYourSpreadCoinAddress
3. You will get your private key. Then open spreadcoin.conf or create it if it doesn't exist (D:\Users\
\AppData\Roaming\SpreadCoin\spreadcoin.conf on Windows) and add the following line:
miningprivkey=YourPrivateKey
4. Restart your wallet if it was running.
In the Mining tab you will now see notification that all mined coins will go to this address.
Of course you need to generate address and get privkey on one computer and edit spreadcoin.conf on the other.
What is the difference between mining in one wallet with privatekey with several computers and mining with a more wallets especially?
the wallet uses electricity = $
This part confuses me - I need to open my wallet on the second computer in order to solo mine. If I don't open the wallet I get json errors. Does the wallet have to be open on both rigs in order to solo mine? And at this point aren't I still burning electricity?
You only need one wallet running. On the computer running the wallet you point your miner to 127.0.0.1 and on the other computer you point it to the computer that's running the wallet.
Computer 1, with wallet: miner.exe -o 127.0.0.1:41677
Computer 2: miner.exe -o ip.of.wallet.computer:41677
Don't put gen=1 into the conf, that makes the wallet run the internal CPU miner and that's a waste of electricity at these network hash rates. Something like this would do the trick, add the miningprivkey parameter if you want, personally I don't use it.
server=1
rpcallowip=127.0.0.1
rpcallowip=192.168.1.*
rpcuser=yourrpcusername
rpcpassword=yourrpcpassword
The first rpcallowip allows RPC connections from the same computer that is running the wallet. The second rpcallowip is needed to allow connections from the other computer, change the IP to whatever your local network is.
Or you can run the wallet on both computer, as long as you don't use gen=1 it doesn't really hurt but you'll have to deal with having two separate wallets and moving coins from them separately.