diff options
| author | Jonas Schnelli <[email protected]> | 2015-04-10 12:49:01 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-06-30 21:45:46 +0200 |
| commit | d0fc10a8444484fabc3702e081ec77473c6c41d2 (patch) | |
| tree | 0ffc49fc02777804ac6b48480a3fe88b39d81586 /src/miner.h | |
| parent | Merge pull request #6354 (diff) | |
| download | discoin-d0fc10a8444484fabc3702e081ec77473c6c41d2.tar.xz discoin-d0fc10a8444484fabc3702e081ec77473c6c41d2.zip | |
detach wallet from miner
Diffstat (limited to 'src/miner.h')
| -rw-r--r-- | src/miner.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/miner.h b/src/miner.h index 96a6b70ec..777a09196 100644 --- a/src/miner.h +++ b/src/miner.h @@ -11,6 +11,7 @@ #include <stdint.h> class CBlockIndex; +class CChainParams; class CReserveKey; class CScript; class CWallet; @@ -24,10 +25,9 @@ struct CBlockTemplate }; /** Run the miner threads */ -void GenerateBitcoins(bool fGenerate, CWallet* pwallet, int nThreads); +void GenerateBitcoins(bool fGenerate, int nThreads, const CChainParams& chainparams); /** Generate a new block, without valid proof-of-work */ CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn); -CBlockTemplate* CreateNewBlockWithKey(CReserveKey& reservekey); /** Modify the extranonce in a block */ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce); void UpdateTime(CBlockHeader* pblock, const Consensus::Params& consensusParams, const CBlockIndex* pindexPrev); |