diff --git a/src/core.h b/src/core.h index 85e39efc1..4a082fd6d 100644 --- a/src/core.h +++ b/src/core.h @@ -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 {