Would be great to have a POS coin working nicely on ultra low cost hardware RPi etc.
I know people did this in the early days with HBN but .... works anymore?
As an aside what thoughts on linking the wallet / address online time with minting/mining?
I believe CLAM has a requirement to be active on the network for x period as well as have coin age.
Can that also be applied to POW? If so it could curtail flash mining somehow?
Agreed. I hope to be back on the Pi someday.
Sounds like Proof of Connection to me. Sounds cool, but probably more complicated then needed.
Here is a very simple code to ensure only 1 PoW for every 1 PoS.
if ( IsProofOfWork() && nHeight > POW_LIMIT_HEIGHT) )
{
if ( pindexPrev->IsProofOfWork())
return error("AcceptBlock() : PoW must come afer PoS only");
}
Lots of stuff in crypto "sounds cool"
Solution is usually the simple one. Sold!