diff options
Diffstat (limited to 'src/pow.cpp')
| -rw-r--r-- | src/pow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pow.cpp b/src/pow.cpp index 14ed65869..dc6998b7c 100644 --- a/src/pow.cpp +++ b/src/pow.cpp @@ -20,7 +20,7 @@ bool AllowMinDifficultyForBlock(const CBlockIndex* pindexLast, const CBlockHeade if (!params.fPowAllowMinDifficultyBlocks) return false; - // Dogecoin: Magic number at which reset protocol switches + // Discoin: Magic number at which reset protocol switches // check if we allow minimum difficulty at this block-height if (pindexLast->nHeight < 157500) return false; @@ -37,7 +37,7 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead if (pindexLast == NULL) return nProofOfWorkLimit; - // Dogecoin: Special rules for minimum difficulty blocks with Digishield + // Discoin: Special rules for minimum difficulty blocks with Digishield if (AllowDigishieldMinDifficultyForBlock(pindexLast, pblock, params)) { // Special difficulty rule for testnet: @@ -84,7 +84,7 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead const CBlockIndex* pindexFirst = pindexLast->GetAncestor(nHeightFirst); assert(pindexFirst); - return CalculateDogecoinNextWorkRequired(pindexLast, pindexFirst->GetBlockTime(), params); + return CalculateDiscoinNextWorkRequired(pindexLast, pindexFirst->GetBlockTime(), params); } unsigned int CalculateNextWorkRequired(const CBlockIndex* pindexLast, int64_t nFirstBlockTime, const Consensus::Params& params) |