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.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2013-07-31 15:43:35 +02:00
|
|
|
#ifndef BITCOIN_MINER_H
|
|
|
|
#define BITCOIN_MINER_H
|
|
|
|
|
2014-10-12 05:26:42 +02:00
|
|
|
#include "primitives/block.h"
|
2015-12-15 21:26:44 +01:00
|
|
|
#include "txmempool.h"
|
2014-10-12 05:26:42 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <stdint.h>
|
2015-12-15 21:26:44 +01:00
|
|
|
#include <memory>
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
class CBlockIndex;
|
2015-04-10 12:49:01 +02:00
|
|
|
class CChainParams;
|
2013-04-13 07:13:08 +02:00
|
|
|
class CReserveKey;
|
|
|
|
class CScript;
|
|
|
|
class CWallet;
|
2015-12-15 21:26:44 +01:00
|
|
|
|
2015-04-16 10:32:47 +02:00
|
|
|
namespace Consensus { struct Params; };
|
2013-07-31 15:43:35 +02:00
|
|
|
|
2015-06-27 21:21:41 +02:00
|
|
|
static const bool DEFAULT_PRINTPRIORITY = false;
|
|
|
|
|
2014-10-12 05:26:42 +02:00
|
|
|
struct CBlockTemplate
|
|
|
|
{
|
|
|
|
CBlock block;
|
|
|
|
std::vector<CAmount> vTxFees;
|
|
|
|
std::vector<int64_t> vTxSigOps;
|
|
|
|
};
|
2014-05-10 14:54:20 +02:00
|
|
|
|
2013-07-31 15:43:35 +02:00
|
|
|
/** Generate a new block, without valid proof-of-work */
|
2015-12-15 21:26:44 +01:00
|
|
|
class BlockAssembler
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
// The constructed block template
|
|
|
|
std::unique_ptr<CBlockTemplate> pblocktemplate;
|
|
|
|
// A convenience pointer that always refers to the CBlock in pblocktemplate
|
|
|
|
CBlock* pblock;
|
|
|
|
|
|
|
|
// Configuration parameters for the block size
|
|
|
|
unsigned int nBlockMaxSize, nBlockMinSize;
|
|
|
|
|
|
|
|
// Information on the current status of the block
|
|
|
|
uint64_t nBlockSize;
|
|
|
|
uint64_t nBlockTx;
|
|
|
|
unsigned int nBlockSigOps;
|
|
|
|
CAmount nFees;
|
|
|
|
CTxMemPool::setEntries inBlock;
|
|
|
|
|
|
|
|
// Chain context for the block
|
|
|
|
int nHeight;
|
|
|
|
int64_t nLockTimeCutoff;
|
|
|
|
const CChainParams& chainparams;
|
|
|
|
|
|
|
|
// Variables used for addScoreTxs and addPriorityTxs
|
|
|
|
int lastFewTxs;
|
|
|
|
bool blockFinished;
|
|
|
|
|
|
|
|
public:
|
|
|
|
BlockAssembler(const CChainParams& chainparams);
|
|
|
|
/** Construct a new block template with coinbase to scriptPubKeyIn */
|
|
|
|
CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// utility functions
|
|
|
|
/** Clear the block's state and prepare for assembling a new block */
|
|
|
|
void resetBlock();
|
|
|
|
/** Add a tx to the block */
|
|
|
|
void AddToBlock(CTxMemPool::txiter iter);
|
|
|
|
|
|
|
|
// Methods for how to add transactions to a block.
|
|
|
|
/** Add transactions based on modified feerate */
|
|
|
|
void addScoreTxs();
|
|
|
|
/** Add transactions based on tx "priority" */
|
|
|
|
void addPriorityTxs();
|
|
|
|
|
|
|
|
// helper function for addScoreTxs and addPriorityTxs
|
|
|
|
/** Test if tx will still "fit" in the block */
|
|
|
|
bool TestForBlock(CTxMemPool::txiter iter);
|
|
|
|
/** Test if tx still has unconfirmed parents not yet in block */
|
|
|
|
bool isStillDependent(CTxMemPool::txiter iter);
|
|
|
|
};
|
|
|
|
|
2013-07-31 15:43:35 +02:00
|
|
|
/** Modify the extranonce in a block */
|
2015-08-08 18:18:41 +02:00
|
|
|
void IncrementExtraNonce(CBlock* pblock, const CBlockIndex* pindexPrev, unsigned int& nExtraNonce);
|
2015-05-22 23:49:50 +02:00
|
|
|
int64_t UpdateTime(CBlockHeader* pblock, const Consensus::Params& consensusParams, const CBlockIndex* pindexPrev);
|
2013-07-31 15:43:35 +02:00
|
|
|
|
|
|
|
#endif // BITCOIN_MINER_H
|