2014-03-10 16:46:53 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-10 16:46:53 +01: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 12:43:56 +02:00
|
|
|
class CBlockIndex;
|
2014-03-10 16:46:53 +01:00
|
|
|
class uint256;
|
2014-12-16 15:43:03 +01:00
|
|
|
class arith_uint256;
|
2014-03-10 16:46:53 +01:00
|
|
|
|
|
|
|
unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock);
|
|
|
|
|
|
|
|
/** Check whether a block hash satisfies the proof-of-work requirement specified by nBits */
|
|
|
|
bool CheckProofOfWork(uint256 hash, unsigned int nBits);
|
2014-12-16 15:43:03 +01:00
|
|
|
arith_uint256 GetBlockProof(const CBlockIndex& block);
|
2014-07-05 12:05:33 +02:00
|
|
|
|
2014-08-28 22:21:03 +02:00
|
|
|
#endif // BITCOIN_POW_H
|