Post
Topic
Board Announcements (Altcoins)
Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Now on MintPal
by
lexa
on 21/02/2014, 10:09:46 UTC
Kernel.cpp Line 20

// Hard checkpoints of stake modifiers to ensure they are deterministic
static std::map mapStakeModifierCheckpoints =
    boost::assign::map_list_of
    ( 0, 0x0e00670bu )
   ( 124000, 0xe791f02cu )
    
    ;

It looks like block 124000 is looking for 0xa4251ce5b54ee576 but got 0xe791f02cu in checkpoints array.



I was also looking into this ...
My understanding is that the second checkpoint (124000) should not be set at all yet.

It was most probably in PPC because PPC already went over block 124000. But the value is probably valid for the PPC blockchain, not for MRC.

Anyone can confirm ?

(will look into the PPC code in the meantime)

EDIT: anyway, it clearly is not required also because proof-of-stake is not enabled yet in MRC ... it should kick in only after one full year (60*60*24*365 seconds, as stated in main.cpp)

Yeah, removing ( 124000, 0xe791f02cu ) line should fix the issue