c++ coders please help me how to modify this to work on 64 bit rand not 256 bit rand. c++ really hard to me to understand
In Kangaroo.cpp try changing this line:
void VanitySearch::getCPUStartingKey(int thId,Int& key,Point& startP) {
if (rekey > 0) {
key.Rand(256); <--- this line
...
To
key.Rand(64). This is going to change the starting key to be a 64-bit random int, not sure about subsequent keys though.