Skip to content

Commit

Permalink
Lower stake hashdrift to 30 seconds.
Browse files Browse the repository at this point in the history
Lower the hash drift which should reduce the amount of orphans.
  • Loading branch information
presstab committed May 15, 2018
1 parent 355e2d3 commit 4c862f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ bool Stake(CStakeInput* stakeInput, unsigned int nBits, unsigned int nTimeBlockF
bool fSuccess = false;
unsigned int nTryTime = 0;
int nHeightStart = chainActive.Height();
int nHashDrift = 45;
int nHashDrift = 30;
CDataStream ssUniqueID = stakeInput->GetUniqueness();
CAmount nValueIn = stakeInput->GetValue();
for (int i = 0; i < nHashDrift; i++) //iterate the hashing
Expand Down

0 comments on commit 4c862f2

Please sign in to comment.