diff options
author | jtimon <jtimon@monetize.io> | 2014-06-28 14:03:06 +0200 |
---|---|---|
committer | jtimon <jtimon@monetize.io> | 2014-08-23 13:21:50 +0200 |
commit | c2c02f3fa99385f5a5be722fda6f71522c93bdaa (patch) | |
tree | 608b76aa8e523a4118f569518bf5150e85d77c48 /src/main.cpp | |
parent | 92b3d3630d6d63305bec136a23c7be4cb2bb2652 (diff) |
Move UpdateTime to pow
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/main.cpp b/src/main.cpp index d7543e3f13..fab5af73bb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1419,25 +1419,6 @@ void static InvalidBlockFound(CBlockIndex *pindex, const CValidationState &state } } -void UpdateTime(CBlockHeader& block, const CBlockIndex* pindexPrev) -{ - block.nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); - - // Updating time can change work required on testnet: - if (Params().AllowMinDifficultyBlocks()) - block.nBits = GetNextWorkRequired(pindexPrev, &block); -} - - - - - - - - - - - void UpdateCoins(const CTransaction& tx, CValidationState &state, CCoinsViewCache &inputs, CTxUndo &txundo, int nHeight) { bool ret; @@ -3291,15 +3272,6 @@ bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp) return nLoaded > 0; } - - - - - - - - - ////////////////////////////////////////////////////////////////////////////// // // CAlert |