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