Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove block nonce for version 11 #1622

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1623,7 +1623,8 @@ bool CBlock::ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions)
{
if (!fReadTransactions)
{
*this = pindex->GetBlockHeader();
SetNull();
*(static_cast<CBlockHeader*>(this)) = pindex->GetBlockHeader();
return true;
}
if (!ReadFromDisk(pindex->nFile, pindex->nBlockPos, fReadTransactions))
Expand Down Expand Up @@ -4940,7 +4941,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
pindex = pindex->pnext;
}

vector<CBlock> vHeaders;
vector<CBlockHeader> vHeaders;
int nLimit = 1000;
LogPrintf("getheaders %d to %s", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20));
for (; pindex; pindex = pindex->pnext)
Expand Down
144 changes: 97 additions & 47 deletions src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static const uint256 hashGenesisBlockTestNet = uint256S("0x00006e037d7b84104208e
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
inline bool IsProtocolV2(int nHeight)
{
return (fTestNet ? nHeight > 2060 : nHeight > 85400);
return (fTestNet ? nHeight > 2060 : nHeight > 85400);
}

inline bool IsResearchAgeEnabled(int nHeight)
Expand Down Expand Up @@ -119,7 +119,7 @@ inline bool IsV11Enabled(int nHeight)

inline int GetSuperblockAgeSpacing(int nHeight)
{
return (fTestNet ? 86400 : (nHeight > 364500) ? 86400 : 43200);
return (fTestNet ? 86400 : (nHeight > 364500) ? 86400 : 43200);
}

inline bool IsV9Enabled_Tally(int nHeight)
Expand Down Expand Up @@ -617,7 +617,7 @@ class CTransaction
// Denial-of-service detection:
mutable int nDoS;
bool DoS(int nDoSIn, bool fIn) const { nDoS += nDoSIn; return fIn; }
std::string hashBoinc;
std::string hashBoinc;

CTransaction()
{
Expand All @@ -635,7 +635,7 @@ class CTransaction
READWRITE(vout);
READWRITE(nLockTime);

READWRITE(hashBoinc);
READWRITE(hashBoinc);
}

void SetNull()
Expand All @@ -646,7 +646,7 @@ class CTransaction
vout.clear();
nLockTime = 0;
nDoS = 0; // Denial-of-service prevention
hashBoinc="";
hashBoinc="";
}

bool IsNull() const
Expand Down Expand Up @@ -1003,19 +1003,83 @@ class CTxIndex
* Blocks are appended to blk0001.dat files on disk. Their location on disk
* is indexed by CBlockIndex objects in memory.
*/
class CBlock
class CBlockHeader
{
public:
static const int32_t CURRENT_VERSION = 10;

// header
static const int CURRENT_VERSION = 10;
int nVersion;
int32_t nVersion;
uint256 hashPrevBlock;
uint256 hashMerkleRoot;
unsigned int nTime;
unsigned int nBits;
uint32_t nTime;
uint32_t nBits;
uint32_t nNonce;

unsigned int nNonce;
CBlockHeader()
{
SetNull();
}

ADD_SERIALIZE_METHODS;

template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action)
{
READWRITE(nVersion);
READWRITE(hashPrevBlock);
READWRITE(hashMerkleRoot);
READWRITE(nTime);
READWRITE(nBits);

// Besides early blocks, Gridcoin uses Proof-of-Stake for consensus,
// so we don't need the nonce field. Don't serialize it after blocks
// version 11 and later:
//
if (nVersion <= 10) {
READWRITE(nNonce);
}
}

void SetNull()
{
nVersion = CURRENT_VERSION;
hashPrevBlock.SetNull();
hashMerkleRoot.SetNull();
nTime = 0;
nBits = 0;
nNonce = 0;
}

bool IsNull() const
{
return (nBits == 0);
}

uint256 GetHash() const
{
if (nVersion >= 11)
return Hash(BEGIN(nVersion), END(nBits));
else if (nVersion >= 7)
return Hash(BEGIN(nVersion), END(nNonce));
else
return GetPoWHash();
}

uint256 GetPoWHash() const
{
return scrypt_blockhash(CVOIDBEGIN(nVersion));
}

int64_t GetBlockTime() const
{
return (int64_t)nTime;
}
};

class CBlock : public CBlockHeader
{
public:
// network and disk
std::vector<CTransaction> vtx;

Expand All @@ -1037,17 +1101,18 @@ class CBlock
SetNull();
}

CBlock(const CBlockHeader &header)
{
SetNull();
*(static_cast<CBlockHeader*>(this)) = header;
}

ADD_SERIALIZE_METHODS;

template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action)
{
READWRITE(nVersion);
READWRITE(hashPrevBlock);
READWRITE(hashMerkleRoot);
READWRITE(nTime);
READWRITE(nBits);
READWRITE(nNonce);
READWRITEAS(CBlockHeader, *this);

// ConnectBlock depends on vtx following header to generate CDiskTxPos
if (!(s.GetType() & (SER_GETHASH|SER_BLOCKHEADERONLY))) {
Expand Down Expand Up @@ -1077,35 +1142,25 @@ class CBlock

void SetNull()
{
nVersion = CBlock::CURRENT_VERSION;
hashPrevBlock.SetNull();
hashMerkleRoot.SetNull();
nTime = 0;
nBits = 0;
nNonce = 0;
CBlockHeader::SetNull();

vtx.clear();
vchBlockSig.clear();
vMerkleTree.clear();
vMerkleTree.clear();
nDoS = 0;
m_claim = NN::Claim();
}

bool IsNull() const
CBlockHeader GetBlockHeader() const
{
return (nBits == 0);
}

uint256 GetHash() const
{
if (nVersion > 6)
return Hash(BEGIN(nVersion), END(nNonce));
else
return GetPoWHash();
}

uint256 GetPoWHash() const
{
return scrypt_blockhash(CVOIDBEGIN(nVersion));
CBlockHeader block;
block.nVersion = nVersion;
block.hashPrevBlock = hashPrevBlock;
block.hashMerkleRoot = hashMerkleRoot;
block.nTime = nTime;
block.nBits = nBits;
block.nNonce = nNonce;
return block;
}

const NN::Claim& GetClaim() const
Expand Down Expand Up @@ -1140,11 +1195,6 @@ class CBlock
return GetClaim().m_superblock;
}

int64_t GetBlockTime() const
{
return (int64_t)nTime;
}

// entropy bit for stake modifier if chosen by modifier
unsigned int GetStakeEntropyBit() const
{
Expand Down Expand Up @@ -1438,9 +1488,9 @@ class CBlockIndex
nIsContract = 0;
}

CBlock GetBlockHeader() const
CBlockHeader GetBlockHeader() const
{
CBlock block;
CBlockHeader block;
block.nVersion = nVersion;
if (pprev)
block.hashPrevBlock = pprev->GetBlockHash();
Expand Down Expand Up @@ -1689,7 +1739,7 @@ class CDiskBlockIndex : public CBlockIndex
if (fUseFastIndex && (nTime < GetAdjustedTime() - 24 * 60 * 60) && !blockHash.IsNull())
return blockHash;

CBlock block;
CBlockHeader block;
block.nVersion = nVersion;
block.hashPrevBlock = hashPrev;
block.hashMerkleRoot = hashMerkleRoot;
Expand Down