How can I set my miner to mine a specific block? like: Block: 496705
I have tried looking in ccminer options for that it looks like there is no option like that.
How can I set my miner to mine a specific block? like: Block: 496705
I have tried looking in ccminer options for that it looks like there is no option like that.
Mining software generally do not work like that. They don't have any idea of what is in the Bitcoin blockchain nor know how to construct a block (i.e. selecting transactions). Rather these mining software must connect to a server that will give it the pieces for the next block that the server wants the mining hardware to solve. So in order to mine at a specific block height, you must connect to and configure a server which provides the block data for the block that you want.
The easiest way to do this would be to use Bitcoin Core and reset its blockchain at a certain block height. To do so, you would use the invalidateblock
command so that the blockchain's tip is the block prior to the height that you want to mine at. Then just point your mining software at Bitcoin Core and it will work on mining that next block which you want.