Post
Topic
Board Announcements (Altcoins)
Re: Offerings to Cthulhu - 1.4 is Here! Now accepted at Coinworks.info
by
vampirus
on 24/05/2018, 20:01:55 UTC
Most likely it was 51% attack like recently in BottleCaps.
But I also found this in official code:
Code:
Old and good parameters:

static const int64_t nGenesisBlockRewardCoin = 10000 * COIN;
static const int64_t nBlockRewardStartCoin = 5 * COIN;
static const int64_t nBlockRewardMinimumCoin = .011 * COIN;

New version with wrong parameters:

static const int64_t nGenesisBlockRewardCoin = 1 * COIN;
static const int64_t nBlockRewardStartCoin = 2048 * COIN;
static const int64_t nBlockRewardMinimumCoin = 1 * COIN;