12 #include <test/util/setup_common.h>
14 #include <boost/test/unit_test.hpp>
22 int64_t nLastRetargetTime = 1261130161;
25 pindexLast.
nTime = 1262152739;
26 pindexLast.
nBits = 0x1d00ffff;
37 int64_t nLastRetargetTime = 1231006505;
40 pindexLast.
nTime = 1233061996;
41 pindexLast.
nBits = 0x1d00ffff;
52 int64_t nLastRetargetTime = 1279008237;
55 pindexLast.
nTime = 1279297671;
56 pindexLast.
nBits = 0x1c05a3f4;
67 int64_t nLastRetargetTime = 1263163443;
70 pindexLast.
nTime = 1269211443;
71 pindexLast.
nBits = 0x1c387f6f;
79 const auto consensus =
89 const auto consensus =
92 unsigned int nBits = ~0x00800000;
98 const auto consensus =
110 const auto consensus =
122 const auto consensus =
135 std::vector<CBlockIndex> blocks(10000);
136 for (
int i = 0; i < 10000; i++) {
137 blocks[i].pprev = i ? &blocks[i - 1] :
nullptr;
138 blocks[i].nHeight = i;
142 blocks[i].nBits = 0x207fffff;
143 blocks[i].nChainWork =
148 for (
int j = 0; j < 1000; j++) {
149 CBlockIndex *p1 = &blocks[InsecureRandRange(10000)];
150 CBlockIndex *p2 = &blocks[InsecureRandRange(10000)];
151 CBlockIndex *p3 = &blocks[InsecureRandRange(10000)];
162 block.
pprev = pindexPrev;
164 block.
nTime = pindexPrev->
nTime + nTimeInterval;
174 std::vector<CBlockIndex> blocks(115);
179 uint32_t initialBits = currentPow.
GetCompact();
183 blocks[0].nHeight = 0;
184 blocks[0].nTime = 1269211443;
185 blocks[0].nBits = initialBits;
190 for (
size_t i = 1; i < 100; i++) {
200 for (
size_t i = 100; i < 110; i++) {
201 blocks[i] =
GetBlockIndex(&blocks[i - 1], 2 * 3600, initialBits);
208 blocks[110] =
GetBlockIndex(&blocks[109], 2 * 3600, initialBits);
210 currentPow += (currentPow >> 2);
219 currentPow += (currentPow >> 2);
228 currentPow += (currentPow >> 2);
237 currentPow += (currentPow >> 2);
arith_uint256 UintToArith256(const uint256 &a)
uint256 ArithToUint256(const arith_uint256 &a)
arith_uint256 GetBlockProof(const CBlockIndex &block)
int64_t GetBlockProofEquivalentTime(const CBlockIndex &to, const CBlockIndex &from, const CBlockIndex &tip, const Consensus::Params ¶ms)
Return the time it would take to redo the work difference between from and to, assuming the current h...
std::unique_ptr< CChainParams > CreateChainParams(const std::string &chain)
Creates and returns a std::unique_ptr<CChainParams> of the chosen chain.
static const std::string MAIN
BIP70 chain name strings (main, test or regtest)
The block chain is a tree shaped structure starting with the genesis block at the root,...
CBlockIndex * pprev
pointer to the index of the predecessor of this block
arith_uint256 nChainWork
(memory only) Total amount of work (expected number of hashes) in the chain up to and including this ...
int64_t GetBlockTime() const
int nHeight
height of the entry in the chain. The genesis block has height 0
const Consensus::Params & GetConsensus() const
const CChainParams & GetChainParams() const override
256-bit unsigned big integer.
arith_uint256 & SetCompact(uint32_t nCompact, bool *pfNegative=nullptr, bool *pfOverflow=nullptr)
The "compact" format is a representation of a whole number N using an unsigned 32bit number similar t...
uint32_t GetCompact(bool fNegative=false) const
void SetHex(const char *psz)
uint32_t GetNextEDAWorkRequired(const CBlockIndex *pindexPrev, const CBlockHeader *pblock, const Consensus::Params ¶ms)
Compute the next required proof of work using the legacy Bitcoin difficulty adjustment + Emergency Di...
uint32_t CalculateNextWorkRequired(const CBlockIndex *pindexPrev, int64_t nFirstBlockTime, const Consensus::Params ¶ms)
Do difficulty adjustement Satoshi's way.
BOOST_AUTO_TEST_CASE(get_next_work)
static CBlockIndex GetBlockIndex(CBlockIndex *pindexPrev, int64_t nTimeInterval, uint32_t nBits)
#define BOOST_AUTO_TEST_SUITE_END()
#define BOOST_FIXTURE_TEST_SUITE(a, b)
#define BOOST_CHECK_EQUAL(v1, v2)
#define BOOST_CHECK(expr)
bool CheckProofOfWork(const BlockHash &hash, uint32_t nBits, const Consensus::Params ¶ms)
Check whether a block hash satisfies the proof-of-work requirement specified by nBits.
A BlockHash is a unqiue identifier for a block.
Parameters that influence chain consensus.
uint256 powLimit
Proof of work parameters.
int64_t nPowTargetSpacing