2014-03-10 15:46:53 +00:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2014-12-17 01:47:57 +00:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
2014-12-13 04:09:33 +00:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-10 15:46:53 +00:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_POW_H
|
|
|
|
#define BITCOIN_POW_H
|
|
|
|
|
2015-02-15 01:21:42 +00:00
|
|
|
#include "consensus/params.h"
|
|
|
|
|
2014-03-10 15:46:53 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
class CBlockHeader;
|
2014-09-14 10:43:56 +00:00
|
|
|
class CBlockIndex;
|
2014-03-10 15:46:53 +00:00
|
|
|
class uint256;
|
2014-12-16 14:43:03 +00:00
|
|
|
class arith_uint256;
|
2014-03-10 15:46:53 +00:00
|
|
|
|
2015-02-15 01:21:42 +00:00
|
|
|
unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock, const Consensus::Params&);
|
|
|
|
unsigned int CalculateNextWorkRequired(const CBlockIndex* pindexLast, int64_t nFirstBlockTime, const Consensus::Params&);
|
2014-03-10 15:46:53 +00:00
|
|
|
|
|
|
|
/** Check whether a block hash satisfies the proof-of-work requirement specified by nBits */
|
2015-02-15 01:21:42 +00:00
|
|
|
bool CheckProofOfWork(uint256 hash, unsigned int nBits, const Consensus::Params&);
|
2014-12-16 14:43:03 +00:00
|
|
|
arith_uint256 GetBlockProof(const CBlockIndex& block);
|
2014-07-05 10:05:33 +00:00
|
|
|
|
2014-08-28 20:21:03 +00:00
|
|
|
#endif // BITCOIN_POW_H
|