Merge pull request #498 from leofidus/1.7-GetPoWHash

move GetPoWHash to CBlockHeader class
This commit is contained in:
langerhans 2014-05-02 22:28:08 +02:00
commit f6177a2cc8

View file

@ -383,6 +383,13 @@ public:
}
uint256 GetHash() const;
uint256 GetPoWHash() const
{
uint256 thash;
scrypt_1024_1_1_256(BEGIN(nVersion), BEGIN(thash));
return thash;
}
int64_t GetBlockTime() const
{
@ -423,13 +430,6 @@ public:
vtx.clear();
vMerkleTree.clear();
}
uint256 GetPoWHash() const
{
uint256 thash;
scrypt_1024_1_1_256(BEGIN(nVersion), BEGIN(thash));
return thash;
}
CBlockHeader GetBlockHeader() const
{