diff options
| author | Ross Nicoll <[email protected]> | 2021-05-20 21:16:28 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2021-05-20 23:23:59 +0100 |
| commit | 3f5612b33a7d79a195729627dcb43bffda4872dd (patch) | |
| tree | 071868e1846029e35871da1e256380a4778400b0 | |
| parent | Litecoin: Fix zeitgeist2 attack thanks to Lolcust and ArtForz. This fixes an ... (diff) | |
| download | discoin-3f5612b33a7d79a195729627dcb43bffda4872dd.tar.xz discoin-3f5612b33a7d79a195729627dcb43bffda4872dd.zip | |
Update SigNet PoW limit to Scrypt value
| -rw-r--r-- | src/chainparams.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 68030d6ab..e85e26922 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -332,7 +332,7 @@ public: consensus.nRuleChangeActivationThreshold = 1900; // 95% of 2000 consensus.nMinerConfirmationWindow = 2000; // nPowTargetTimespan / nPowTargetSpacing consensus.MinBIP9WarningHeight = 0; - consensus.powLimit = uint256S("00000377ae000000000000000000000000000000000000000000000000000000"); + consensus.powLimit = uint256S("00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"); consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].bit = 28; consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nStartTime = 1199145601; // January 1, 2008 consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nTimeout = 1230767999; // December 31, 2008 |