From: Scott Nadal Date: Sat, 24 Mar 2012 18:43:13 +0000 (+0000) Subject: PPCoin: Empty signature for genesis block X-Git-Tag: v0.4.0-unstable~199^2~1 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=4e87204fc937e9c19291336069058048c14e5448 PPCoin: Empty signature for genesis block --- diff --git a/src/main.h b/src/main.h index d8fd222..321da6f 100644 --- a/src/main.h +++ b/src/main.h @@ -1048,6 +1048,9 @@ public: bool CheckBlockSignature() const { + if (GetHash() == hashGenesisBlock) + return vchBlockSig.empty(); + std::vector > vSolution; if (!Solver(vtx[0].vout[0].scriptPubKey, vSolution))