Can anyone here describe to me how to solo mine, I know how to pool mine, but no one ever tells me how to actually solo mine. I will be scrypt mining. If anyone can list out steps, that would be great
Took me a bit to get mine sorted but here is my files. All you should need to do is get the wallet and open it, then close so it creates the data folder. Create a file called fusioncoin.conf and copy this to the fusioncoin folder in your app data folder per below.
fusioncoin.confdaemon=1
server=1
rpcuser=robertson
rpcpassword=password
rpcport=9988
rpcallowip=127.0.0.1 (this is address you connect to your wallet with in the batch file)
rpcallowip=192.168.your subnet.* (normally it reads 192.168.1.* (the * meaning any number of IP address on that subnet)
miningalgo=scrypt (or miningalgo=sha256 if using this)
addnode=54.193.11.95
addnode=54.255.130.210Change the username and password to what ever you want the rest should be OK, the rpcport can be anything as long as it is the same in the bat file you create per below.
fusioncoin.bat cgminer --scrypt -o 127.0.0.1:9988 -u robertson -p password --lookup-gap 2 --thread-concurrency 8192 -g 2 -I 13 -w 256 --gpu-engine 1070 --gpu-memclock 1500the stuff I have after the password is for my graphics cards (r9 280x) but you can either remove this or change for your setup.
Prob best to find another easy coin and test this today so you are ready to simply copy over conf file into the app data folder once you get the wallet then run the fusioncoin.bat file.
you will probably get a message stating no long pool can be found but just ignore this.
Hopefully this is all OK for you. I had the same issues at first but once you understand it is the same for pretty much any scrypt or SHA coin (wont work for Antminer S1, this is not easy and involves a lot of work to get running)
If you are interested and have Linux knowledge check this guide
https://bitcointalk.org/index.php?topic=162788.0 for solo on the Antminer S1 (I have not done this but my friend has and it works)
PS note from my friend when doing this below
1. Follow the step by step, even running the bitcoind and getting the message on the temp user and password.
2. You may need to install sqlite (which is not part of the step by step on the thread, but is mentioned on the very last page of the thread, page 8 )
3. After you have it tested and working on bitcoind (just use testnet so you don't spend too much time downloading the whole bitcoin blockchain, I copied the blockchain myself from another machine and put it on an external USB flash) then plan the altcoin you want to solo-mine
4. Git clone the source of the altcoin and follow the steps from where it was on the section similar to bitcoind. I could not get Version coin working, but it may be a problem with that git source as Chikun took 5 minutes to get it working (not counting the building of the application chikund from source code).
Warning: Don't install Ubuntu with LAMP. The mysql conflicts with sqlite which is used by stratum software (twisted is the name of the python application). Don't jump steps like I did or you will end up uninstalling to backout of the steps and then go forward.
Good luck with that :-) and thanks to Jeremy Catuira for the solo info on the S1.
Does this work when you have the wallet on a different computer than the miner? Thanks