Post
Topic
Board Announcements (Altcoins)
Re: [PRE-ANN] - The WhiteCoin Foundation - Community Planning & Discussion
by
laxori666
on 02/05/2014, 21:09:53 UTC
Rofl so literally the way to fix the broken pos was to change

Code:
unsigned int nStakeMaxAge = -1; // stake age of full weight: -1

to

Code:
unsigned int nStakeMaxAge = 60 * 60 * 24 * 100;

And that took days to figure out?

Pro tip,
Code:
extern int nStakeMaxAge;
should have been
Code:
extern unsigned int nStakeMaxAge;
and that would also have worked.

Question though, if that was the fix (as this is the only significant change since April 27th), why didn't this commit fix it?

(I'm assuming the fix is up on this repository - is there something else to it?)