You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. Can you release a new foocoin scrypt base example with your foocode, with integration of merged mining and how to use migrate from your Source to a source with allow to handle with the new coinparams.cpp. The Problem is that i used in my Coin, that in main.cpp
That all work good and Coin is running very good and stable..
But how now to update to a newer Damon or what a like is to integrate now merged into your Foocoin scrypt hashcat?
Can you release a FOO sam code base with merged integration? Is that possible? thanks
The text was updated successfully, but these errors were encountered:
Hi. Can you release a new foocoin scrypt base example with your foocode, with integration of merged mining and how to use migrate from your Source to a source with allow to handle with the new coinparams.cpp. The Problem is that i used in my Coin, that in main.cpp
static int64 nTargetTimespan = 60 * 6; // FOO:
static int64 nTargetSpacing = 9; // FOO:
static int64 nInterval = nTargetTimespan / nTargetSpacing;
static int64 nReTargetHistoryFact = 2; // look at 2 times the retarget
and later
// From block 1200000 retarget the difficulty every xxx blocks
// Retarget factor to 2
if(pindexLast->nHeight >= 1200000)
{
nTargetTimespan = 30 * 60; //1800sec = 200 Blocks = all 30 Minutes or all 200 BK
nTargetSpacing = 19; // 19 sec
nInterval = nTargetTimespan / nTargetSpacing;
nReTargetHistoryFact = 2;
}
else if(pindexLast->nHeight >= 511111)
{
nTargetTimespan = 5 * 60 * 60; // 5 hours
nTargetSpacing = 29; // 9 sec
nInterval = nTargetTimespan / nTargetSpacing;
nReTargetHistoryFact = 6;
}
else
{
nTargetTimespan = 60 * 6; // FOO:
nTargetSpacing = 9; // FOO:
nInterval = nTargetTimespan / nTargetSpacing;
nReTargetHistoryFact = 2;
}
That all work good and Coin is running very good and stable..
But how now to update to a newer Damon or what a like is to integrate now merged into your Foocoin scrypt hashcat?
Can you release a FOO sam code base with merged integration? Is that possible? thanks
The text was updated successfully, but these errors were encountered: