Not sure if staking just doesn't work on a large scale or if something else solved the problem, but I've continued to stake and haven't had any stability issues.
Same here; I've manually re-enabled staking when I run slimcoin and haven't had any major problems. (There is the fact that it crashes every so often, but it does that regardless of whether staking is enabled.)
-----
@d5000, I've pulled a123's latest changes to my own fork and got it to compile with one change:
slimcoin/src/rpcdump.cpp:
@@ -97,7 +97,7 @@ Value importpassphrase(const Array& params, bool fHelp)
obj.push_back(Pair("Address", vchAddress.ToString() ));
obj.push_back(Pair("Hash", pass.GetHex()));
obj.push_back(Pair("Phrase", strSecret));
- obj.push_back(Pair("Length", strSecret.length()));
+ obj.push_back(Pair("Length", (int)strSecret.length()));
return obj;
// return Value::null;
}
Without that change, my build failed with an error along the lines of "type conversion is ambiguous".
I've got my fork compiling for both linux and win32, using Gitian with the descriptor files located in slimcoin/contrib/gitian-descriptors/*. (Though I've made a lot of changes to them to get it working; I don't think it was being used for quite a while in Slimcoin, and maybe Peercoin too.)
If a123 shows up, I'll send him a pull request to integrate it all back into his copy (as long as someone can check it builds ok for them too!).