45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "primitives/block.h"
|
|
|
|
#include "hash.h"
|
|
#include "crypto/scrypt.h"
|
|
#include "tinyformat.h"
|
|
#include "utilstrencodings.h"
|
|
#include "crypto/common.h"
|
|
|
|
uint256 CBlockHeader::GetHash() const
|
|
{
|
|
if (nVersion > 6)
|
|
return SerializeHash(*this);
|
|
return GetPoWHash();
|
|
}
|
|
|
|
uint256 CBlockHeader::GetPoWHash() const
|
|
{
|
|
uint256 thash;
|
|
scrypt_1024_1_1_256(BEGIN(nVersion), BEGIN(thash));
|
|
return thash;
|
|
}
|
|
|
|
std::string CBlock::ToString() const
|
|
{
|
|
std::stringstream s;
|
|
s << strprintf("CBlock(hash=%s, ver=%d, hashPrevBlock=%s, hashMerkleRoot=%s, nTime=%u, nBits=%08x, nNonce=%u, vtx=%u, vchBlockSig=%s)\n",
|
|
GetHash().ToString(),
|
|
nVersion,
|
|
hashPrevBlock.ToString(),
|
|
hashMerkleRoot.ToString(),
|
|
nTime, nBits, nNonce,
|
|
vtx.size(),
|
|
HexStr(vchBlockSig.begin(), vchBlockSig.end()));
|
|
for (unsigned int i = 0; i < vtx.size(); i++)
|
|
{
|
|
s << " " << vtx[i].ToString() << "\n";
|
|
}
|
|
return s.str();
|
|
}
|