Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can you release a new foocoin for scrypt #2

Open
Deloggi opened this issue Nov 2, 2018 · 0 comments
Open

Can you release a new foocoin for scrypt #2

Deloggi opened this issue Nov 2, 2018 · 0 comments

Comments

@Deloggi
Copy link

Deloggi commented Nov 2, 2018

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant