2013-07-31 15:43:35 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2015-12-13 17:58:29 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-07-31 15:43:35 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include "miner.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2014-10-23 02:05:11 +02:00
|
|
|
#include "amount.h"
|
2015-07-05 14:17:46 +02:00
|
|
|
#include "chain.h"
|
2015-04-10 18:42:50 +02:00
|
|
|
#include "chainparams.h"
|
2015-07-05 14:17:46 +02:00
|
|
|
#include "coins.h"
|
2015-01-24 15:29:29 +01:00
|
|
|
#include "consensus/consensus.h"
|
2015-11-17 17:35:44 +01:00
|
|
|
#include "consensus/merkle.h"
|
2015-01-24 15:57:12 +01:00
|
|
|
#include "consensus/validation.h"
|
2014-04-27 23:34:02 +02:00
|
|
|
#include "hash.h"
|
2013-07-31 15:43:35 +02:00
|
|
|
#include "main.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "net.h"
|
2015-06-24 07:25:30 +02:00
|
|
|
#include "policy/policy.h"
|
2014-03-10 16:46:53 +01:00
|
|
|
#include "pow.h"
|
2015-04-10 18:42:50 +02:00
|
|
|
#include "primitives/transaction.h"
|
2015-07-05 14:17:46 +02:00
|
|
|
#include "script/standard.h"
|
2014-10-22 01:31:01 +02:00
|
|
|
#include "timedata.h"
|
2015-07-05 14:17:46 +02:00
|
|
|
#include "txmempool.h"
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#include "util.h"
|
|
|
|
#include "utilmoneystr.h"
|
2015-04-10 12:49:01 +02:00
|
|
|
#include "validationinterface.h"
|
2014-06-16 16:30:38 +02:00
|
|
|
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#include <boost/thread.hpp>
|
2014-10-21 06:33:06 +02:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
2015-11-03 16:35:39 +01:00
|
|
|
#include <queue>
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
|
2014-06-16 16:30:38 +02:00
|
|
|
using namespace std;
|
2014-04-26 19:26:34 +02:00
|
|
|
|
2013-07-31 15:43:35 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// BitcoinMiner
|
|
|
|
//
|
|
|
|
|
2014-04-10 20:14:18 +02:00
|
|
|
//
|
|
|
|
// Unconfirmed transactions in the memory pool often depend on other
|
|
|
|
// transactions in the memory pool. When we select transactions from the
|
|
|
|
// pool, we select by highest priority or fee rate, so we might consider
|
|
|
|
// transactions that depend on transactions that aren't yet in the block.
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
uint64_t nLastBlockTx = 0;
|
|
|
|
uint64_t nLastBlockSize = 0;
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-11-03 16:35:39 +01:00
|
|
|
class ScoreCompare
|
2013-07-31 15:43:35 +02:00
|
|
|
{
|
|
|
|
public:
|
2015-11-03 16:35:39 +01:00
|
|
|
ScoreCompare() {}
|
2014-05-10 14:47:16 +02:00
|
|
|
|
2015-11-03 16:35:39 +01:00
|
|
|
bool operator()(const CTxMemPool::txiter a, const CTxMemPool::txiter b)
|
2013-07-31 15:43:35 +02:00
|
|
|
{
|
2015-11-03 16:35:39 +01:00
|
|
|
return CompareTxMemPoolEntryByScore()(*b,*a); // Convert to less than
|
2013-07-31 15:43:35 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-22 23:49:50 +02:00
|
|
|
int64_t UpdateTime(CBlockHeader* pblock, const Consensus::Params& consensusParams, const CBlockIndex* pindexPrev)
|
2014-10-22 01:31:01 +02:00
|
|
|
{
|
2015-05-22 23:49:50 +02:00
|
|
|
int64_t nOldTime = pblock->nTime;
|
|
|
|
int64_t nNewTime = std::max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
|
|
|
|
|
|
|
|
if (nOldTime < nNewTime)
|
|
|
|
pblock->nTime = nNewTime;
|
2014-10-22 01:31:01 +02:00
|
|
|
|
|
|
|
// Updating time can change work required on testnet:
|
2015-04-10 18:42:50 +02:00
|
|
|
if (consensusParams.fPowAllowMinDifficultyBlocks)
|
|
|
|
pblock->nBits = GetNextWorkRequired(pindexPrev, pblock, consensusParams);
|
2015-05-22 23:49:50 +02:00
|
|
|
|
|
|
|
return nNewTime - nOldTime;
|
2014-10-22 01:31:01 +02:00
|
|
|
}
|
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
BlockAssembler::BlockAssembler(const CChainParams& _chainparams)
|
|
|
|
: chainparams(_chainparams)
|
2013-07-31 15:43:35 +02:00
|
|
|
{
|
2016-05-24 20:23:15 +02:00
|
|
|
// Largest block you're willing to create:
|
2015-12-15 21:26:44 +01:00
|
|
|
nBlockMaxSize = GetArg("-blockmaxsize", DEFAULT_BLOCK_MAX_SIZE);
|
|
|
|
// Limit to between 1K and MAX_BLOCK_SIZE-1K for sanity:
|
|
|
|
nBlockMaxSize = std::max((unsigned int)1000, std::min((unsigned int)(MAX_BLOCK_SIZE-1000), nBlockMaxSize));
|
|
|
|
|
|
|
|
// Minimum block size you want to create; block will be filled with free transactions
|
|
|
|
// until there are no more or the block reaches this size:
|
|
|
|
nBlockMinSize = GetArg("-blockminsize", DEFAULT_BLOCK_MIN_SIZE);
|
|
|
|
nBlockMinSize = std::min(nBlockMaxSize, nBlockMinSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlockAssembler::resetBlock()
|
|
|
|
{
|
|
|
|
inBlock.clear();
|
|
|
|
|
|
|
|
// Reserve space for coinbase tx
|
|
|
|
nBlockSize = 1000;
|
|
|
|
nBlockSigOps = 100;
|
|
|
|
|
|
|
|
// These counters do not include coinbase tx
|
|
|
|
nBlockTx = 0;
|
|
|
|
nFees = 0;
|
|
|
|
|
|
|
|
lastFewTxs = 0;
|
|
|
|
blockFinished = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CBlockTemplate* BlockAssembler::CreateNewBlock(const CScript& scriptPubKeyIn)
|
|
|
|
{
|
|
|
|
resetBlock();
|
|
|
|
|
|
|
|
pblocktemplate.reset(new CBlockTemplate());
|
|
|
|
|
2013-07-31 15:43:35 +02:00
|
|
|
if(!pblocktemplate.get())
|
|
|
|
return NULL;
|
2015-12-15 21:26:44 +01:00
|
|
|
pblock = &pblocktemplate->block; // pointer for convenience
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2014-06-07 13:53:27 +02:00
|
|
|
// Add dummy coinbase tx as first transaction
|
|
|
|
pblock->vtx.push_back(CTransaction());
|
2013-07-31 15:43:35 +02:00
|
|
|
pblocktemplate->vTxFees.push_back(-1); // updated at end
|
|
|
|
pblocktemplate->vTxSigOps.push_back(-1); // updated at end
|
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
LOCK2(cs_main, mempool.cs);
|
|
|
|
CBlockIndex* pindexPrev = chainActive.Tip();
|
|
|
|
nHeight = pindexPrev->nHeight + 1;
|
|
|
|
|
|
|
|
pblock->nVersion = ComputeBlockVersion(pindexPrev, chainparams.GetConsensus());
|
|
|
|
// -regtest only: allow overriding block.nVersion with
|
|
|
|
// -blockversion=N to test forking scenarios
|
|
|
|
if (chainparams.MineBlocksOnDemand())
|
|
|
|
pblock->nVersion = GetArg("-blockversion", pblock->nVersion);
|
|
|
|
|
|
|
|
pblock->nTime = GetAdjustedTime();
|
|
|
|
const int64_t nMedianTimePast = pindexPrev->GetMedianTimePast();
|
|
|
|
|
|
|
|
nLockTimeCutoff = (STANDARD_LOCKTIME_VERIFY_FLAGS & LOCKTIME_MEDIAN_TIME_PAST)
|
|
|
|
? nMedianTimePast
|
|
|
|
: pblock->GetBlockTime();
|
|
|
|
|
|
|
|
addPriorityTxs();
|
|
|
|
addScoreTxs();
|
|
|
|
|
|
|
|
nLastBlockTx = nBlockTx;
|
|
|
|
nLastBlockSize = nBlockSize;
|
|
|
|
LogPrintf("CreateNewBlock(): total size %u txs: %u fees: %ld sigops %d\n", nBlockSize, nBlockTx, nFees, nBlockSigOps);
|
|
|
|
|
|
|
|
// Create coinbase transaction.
|
|
|
|
CMutableTransaction coinbaseTx;
|
|
|
|
coinbaseTx.vin.resize(1);
|
|
|
|
coinbaseTx.vin[0].prevout.SetNull();
|
|
|
|
coinbaseTx.vout.resize(1);
|
|
|
|
coinbaseTx.vout[0].scriptPubKey = scriptPubKeyIn;
|
|
|
|
coinbaseTx.vout[0].nValue = nFees + GetBlockSubsidy(nHeight, chainparams.GetConsensus());
|
|
|
|
coinbaseTx.vin[0].scriptSig = CScript() << nHeight << OP_0;
|
|
|
|
pblock->vtx[0] = coinbaseTx;
|
|
|
|
pblocktemplate->vTxFees[0] = -nFees;
|
|
|
|
|
|
|
|
// Fill in header
|
|
|
|
pblock->hashPrevBlock = pindexPrev->GetBlockHash();
|
|
|
|
UpdateTime(pblock, chainparams.GetConsensus(), pindexPrev);
|
|
|
|
pblock->nBits = GetNextWorkRequired(pindexPrev, pblock, chainparams.GetConsensus());
|
|
|
|
pblock->nNonce = 0;
|
|
|
|
pblocktemplate->vTxSigOps[0] = GetLegacySigOpCount(pblock->vtx[0]);
|
|
|
|
|
|
|
|
CValidationState state;
|
|
|
|
if (!TestBlockValidity(state, chainparams, *pblock, pindexPrev, false, false)) {
|
|
|
|
throw std::runtime_error(strprintf("%s: TestBlockValidity failed: %s", __func__, FormatStateMessage(state)));
|
|
|
|
}
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
return pblocktemplate.release();
|
|
|
|
}
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
bool BlockAssembler::isStillDependent(CTxMemPool::txiter iter)
|
|
|
|
{
|
|
|
|
BOOST_FOREACH(CTxMemPool::txiter parent, mempool.GetMemPoolParents(iter))
|
|
|
|
{
|
|
|
|
if (!inBlock.count(parent)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-11-03 16:35:39 +01:00
|
|
|
|
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
bool BlockAssembler::TestForBlock(CTxMemPool::txiter iter)
|
|
|
|
{
|
|
|
|
if (nBlockSize + iter->GetTxSize() >= nBlockMaxSize) {
|
|
|
|
// If the block is so close to full that no more txs will fit
|
|
|
|
// or if we've tried more than 50 times to fill remaining space
|
|
|
|
// then flag that the block is finished
|
|
|
|
if (nBlockSize > nBlockMaxSize - 100 || lastFewTxs > 50) {
|
|
|
|
blockFinished = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Once we're within 1000 bytes of a full block, only look at 50 more txs
|
|
|
|
// to try to fill the remaining space.
|
|
|
|
if (nBlockSize > nBlockMaxSize - 1000) {
|
|
|
|
lastFewTxs++;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nBlockSigOps + iter->GetSigOpCount() >= MAX_BLOCK_SIGOPS) {
|
|
|
|
// If the block has room for no more sig ops then
|
|
|
|
// flag that the block is finished
|
|
|
|
if (nBlockSigOps > MAX_BLOCK_SIGOPS - 2) {
|
|
|
|
blockFinished = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Otherwise attempt to find another tx with fewer sigops
|
|
|
|
// to put in the block.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Must check that lock times are still valid
|
|
|
|
// This can be removed once MTP is always enforced
|
|
|
|
// as long as reorgs keep the mempool consistent.
|
|
|
|
if (!IsFinalTx(iter->GetTx(), nHeight, nLockTimeCutoff))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlockAssembler::AddToBlock(CTxMemPool::txiter iter)
|
|
|
|
{
|
|
|
|
pblock->vtx.push_back(iter->GetTx());
|
|
|
|
pblocktemplate->vTxFees.push_back(iter->GetFee());
|
|
|
|
pblocktemplate->vTxSigOps.push_back(iter->GetSigOpCount());
|
|
|
|
nBlockSize += iter->GetTxSize();
|
|
|
|
++nBlockTx;
|
|
|
|
nBlockSigOps += iter->GetSigOpCount();
|
|
|
|
nFees += iter->GetFee();
|
|
|
|
inBlock.insert(iter);
|
|
|
|
|
2015-11-03 16:35:39 +01:00
|
|
|
bool fPrintPriority = GetBoolArg("-printpriority", DEFAULT_PRINTPRIORITY);
|
2015-12-15 21:26:44 +01:00
|
|
|
if (fPrintPriority) {
|
|
|
|
double dPriority = iter->GetPriority(nHeight);
|
|
|
|
CAmount dummy;
|
|
|
|
mempool.ApplyDeltas(iter->GetTx().GetHash(), dPriority, dummy);
|
|
|
|
LogPrintf("priority %.1f fee %s txid %s\n",
|
|
|
|
dPriority,
|
|
|
|
CFeeRate(iter->GetModifiedFee(), iter->GetTxSize()).ToString(),
|
|
|
|
iter->GetTx().GetHash().ToString());
|
|
|
|
}
|
|
|
|
}
|
2014-05-10 14:47:16 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
void BlockAssembler::addScoreTxs()
|
|
|
|
{
|
|
|
|
std::priority_queue<CTxMemPool::txiter, std::vector<CTxMemPool::txiter>, ScoreCompare> clearedTxs;
|
|
|
|
CTxMemPool::setEntries waitSet;
|
|
|
|
CTxMemPool::indexed_transaction_set::index<mining_score>::type::iterator mi = mempool.mapTx.get<mining_score>().begin();
|
|
|
|
CTxMemPool::txiter iter;
|
|
|
|
while (!blockFinished && (mi != mempool.mapTx.get<mining_score>().end() || !clearedTxs.empty()))
|
2013-07-31 15:43:35 +02:00
|
|
|
{
|
2015-12-15 21:26:44 +01:00
|
|
|
// If no txs that were previously postponed are available to try
|
|
|
|
// again, then try the next highest score tx
|
|
|
|
if (clearedTxs.empty()) {
|
|
|
|
iter = mempool.mapTx.project<0>(mi);
|
|
|
|
mi++;
|
|
|
|
}
|
|
|
|
// If a previously postponed tx is available to try again, then it
|
|
|
|
// has higher score than all untried so far txs
|
|
|
|
else {
|
|
|
|
iter = clearedTxs.top();
|
|
|
|
clearedTxs.pop();
|
2013-07-31 15:43:35 +02:00
|
|
|
}
|
|
|
|
|
2016-05-24 20:23:15 +02:00
|
|
|
// If tx already in block, skip (added by addPriorityTxs)
|
|
|
|
if (inBlock.count(iter)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
// If tx is dependent on other mempool txs which haven't yet been included
|
|
|
|
// then put it in the waitSet
|
|
|
|
if (isStillDependent(iter)) {
|
|
|
|
waitSet.insert(iter);
|
|
|
|
continue;
|
|
|
|
}
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
// If the fee rate is below the min fee rate for mining, then we're done
|
|
|
|
// adding txs based on score (fee rate)
|
|
|
|
if (iter->GetModifiedFee() < ::minRelayTxFee.GetFee(iter->GetTxSize()) && nBlockSize >= nBlockMinSize) {
|
|
|
|
return;
|
|
|
|
}
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
// If this tx fits in the block add it, otherwise keep looping
|
|
|
|
if (TestForBlock(iter)) {
|
|
|
|
AddToBlock(iter);
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
// This tx was successfully added, so
|
|
|
|
// add transactions that depend on this one to the priority queue to try again
|
|
|
|
BOOST_FOREACH(CTxMemPool::txiter child, mempool.GetMemPoolChildren(iter))
|
2013-07-31 15:43:35 +02:00
|
|
|
{
|
2015-12-15 21:26:44 +01:00
|
|
|
if (waitSet.count(child)) {
|
|
|
|
clearedTxs.push(child);
|
|
|
|
waitSet.erase(child);
|
2015-11-03 16:35:39 +01:00
|
|
|
}
|
2013-07-31 15:43:35 +02:00
|
|
|
}
|
2015-12-15 21:26:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
void BlockAssembler::addPriorityTxs()
|
|
|
|
{
|
|
|
|
// How much of the block should be dedicated to high-priority transactions,
|
|
|
|
// included regardless of the fees they pay
|
|
|
|
unsigned int nBlockPrioritySize = GetArg("-blockprioritysize", DEFAULT_BLOCK_PRIORITY_SIZE);
|
|
|
|
nBlockPrioritySize = std::min(nBlockMaxSize, nBlockPrioritySize);
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
if (nBlockPrioritySize == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
// This vector will be sorted into a priority queue:
|
|
|
|
vector<TxCoinAgePriority> vecPriority;
|
|
|
|
TxCoinAgePriorityCompare pricomparer;
|
|
|
|
std::map<CTxMemPool::txiter, double, CTxMemPool::CompareIteratorByHash> waitPriMap;
|
|
|
|
typedef std::map<CTxMemPool::txiter, double, CTxMemPool::CompareIteratorByHash>::iterator waitPriIter;
|
|
|
|
double actualPriority = -1;
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
vecPriority.reserve(mempool.mapTx.size());
|
|
|
|
for (CTxMemPool::indexed_transaction_set::iterator mi = mempool.mapTx.begin();
|
|
|
|
mi != mempool.mapTx.end(); ++mi)
|
|
|
|
{
|
|
|
|
double dPriority = mi->GetPriority(nHeight);
|
|
|
|
CAmount dummy;
|
|
|
|
mempool.ApplyDeltas(mi->GetTx().GetHash(), dPriority, dummy);
|
|
|
|
vecPriority.push_back(TxCoinAgePriority(dPriority, mi));
|
|
|
|
}
|
|
|
|
std::make_heap(vecPriority.begin(), vecPriority.end(), pricomparer);
|
|
|
|
|
|
|
|
CTxMemPool::txiter iter;
|
|
|
|
while (!vecPriority.empty() && !blockFinished) { // add a tx from priority queue to fill the blockprioritysize
|
|
|
|
iter = vecPriority.front().second;
|
|
|
|
actualPriority = vecPriority.front().first;
|
|
|
|
std::pop_heap(vecPriority.begin(), vecPriority.end(), pricomparer);
|
|
|
|
vecPriority.pop_back();
|
|
|
|
|
|
|
|
// If tx already in block, skip
|
|
|
|
if (inBlock.count(iter)) {
|
|
|
|
assert(false); // shouldn't happen for priority txs
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If tx is dependent on other mempool txs which haven't yet been included
|
|
|
|
// then put it in the waitSet
|
|
|
|
if (isStillDependent(iter)) {
|
|
|
|
waitPriMap.insert(std::make_pair(iter, actualPriority));
|
|
|
|
continue;
|
|
|
|
}
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
// If this tx fits in the block add it, otherwise keep looping
|
|
|
|
if (TestForBlock(iter)) {
|
|
|
|
AddToBlock(iter);
|
2015-11-03 16:35:39 +01:00
|
|
|
|
2015-12-15 21:26:44 +01:00
|
|
|
// If now that this txs is added we've surpassed our desired priority size
|
|
|
|
// or have dropped below the AllowFreeThreshold, then we're done adding priority txs
|
2016-06-01 18:29:03 +02:00
|
|
|
if (nBlockSize >= nBlockPrioritySize || !AllowFree(actualPriority)) {
|
2015-12-15 21:26:44 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This tx was successfully added, so
|
|
|
|
// add transactions that depend on this one to the priority queue to try again
|
2015-11-03 16:35:39 +01:00
|
|
|
BOOST_FOREACH(CTxMemPool::txiter child, mempool.GetMemPoolChildren(iter))
|
2013-07-31 15:43:35 +02:00
|
|
|
{
|
2015-12-15 21:26:44 +01:00
|
|
|
waitPriIter wpiter = waitPriMap.find(child);
|
|
|
|
if (wpiter != waitPriMap.end()) {
|
|
|
|
vecPriority.push_back(TxCoinAgePriority(wpiter->second,child));
|
|
|
|
std::push_heap(vecPriority.begin(), vecPriority.end(), pricomparer);
|
|
|
|
waitPriMap.erase(wpiter);
|
2013-07-31 15:43:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-08 18:18:41 +02:00
|
|
|
void IncrementExtraNonce(CBlock* pblock, const CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
|
2013-07-31 15:43:35 +02:00
|
|
|
{
|
|
|
|
// Update nExtraNonce
|
|
|
|
static uint256 hashPrevBlock;
|
|
|
|
if (hashPrevBlock != pblock->hashPrevBlock)
|
|
|
|
{
|
|
|
|
nExtraNonce = 0;
|
|
|
|
hashPrevBlock = pblock->hashPrevBlock;
|
|
|
|
}
|
|
|
|
++nExtraNonce;
|
|
|
|
unsigned int nHeight = pindexPrev->nHeight+1; // Height first in coinbase required for block.version=2
|
2014-06-07 13:53:27 +02:00
|
|
|
CMutableTransaction txCoinbase(pblock->vtx[0]);
|
|
|
|
txCoinbase.vin[0].scriptSig = (CScript() << nHeight << CScriptNum(nExtraNonce)) + COINBASE_FLAGS;
|
|
|
|
assert(txCoinbase.vin[0].scriptSig.size() <= 100);
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2014-06-07 13:53:27 +02:00
|
|
|
pblock->vtx[0] = txCoinbase;
|
2015-11-17 17:35:44 +01:00
|
|
|
pblock->hashMerkleRoot = BlockMerkleRoot(*pblock);
|
2013-07-31 15:43:35 +02:00
|
|
|
}
|