The CryptoBuck Team is proud to announce the upcoming 1 Year Anniversary. The Public Launch - Born On Date - SEPTEMBER 2nd 2013 is approaching Fast. What a year this has been..... CryptoBuck has been hashing away as a 100% Proof Of Stake Only Chain since Block 15637 - GMT: Sun, 13 Oct 2013 01:22:02 UTC (1381627322)
In October 2013, Looong before Scrypt Asic we were hitting 100-150Mh speeds on the network which was phenomenal GPU/CPU Speeds for a Startup. POS/POW Hybrid Algorithm was in full effect. 33BUK's 33BUK's 33BUK's 33BUK's The Blockchain was ticking away- We had a very large following in China at the time, and had a positive outlook for upward potential. While in our Highs, Block 15637 came along and unintentionally put the POW Generation in a loop, leaving CryptoBuck to a P.O.S. only Asset. This was the beginning of all BUK Generation being seized up in this Stalled POW chain. The Total MINT at this point was around 500,000 BUK's. - 9 Months later we have a Total Mint of 511,510. - Proof Of Stake has been the Bloodline of CryptoBuck.
Now as we approach the 1 Year Mile-Stone we have tallied up the opinions of the community and have decided to bring back the Proof Of Work Chain and let the BUK Production continue as it was intended. ~10 Million BUK's mining schedule. The production schedule will go unchanged with current rates at 33 BUK's @ 3Minutes. The FIX - Coded in version 1.3.0 will start the POW chain back up at Block 28000. The Fault that caused all the problems on block 15637 is a "Negative N Factor" issue, which puts POW in a loop when negative value is reached. See Code Below. In the File Main.cpp -
Line 1013 - REMOVED - static const int64 nTargetTimespan = 15 * 60; // 15 mins
Line 1083-1103 Below
int64 nTargetTimespan;
if (pindexLast->nHeight >= 28000)
{
// fixed nTargetTimespan value: 30 blocks interval
nTargetTimespan = nStakeTargetSpacing * 30;
// Time bomb prvention
if(nActualSpacing < 0)
{
nActualSpacing = 2;
}
else if(nActualSpacing > nTargetTimespan)
{
nActualSpacing = nTargetTimespan;
}
}
else
{
// original nTargetTimespan value
nTargetTimespan = 15 * 60;
Version 1.3.0 also addresses connectivity issues, and patches Heart-bleed OpenSSL concerns. Please update Clients, as 1.3.0 is now available for download prior to block 28000.
BUK 1.3.0 DOWNLOAD (Static Built/No DLL's Needed) = https://github.com/CryptoBuck/CryptoBuck/releases/tag/1.3.0.0