Bugfix: ConnectBlock: In case the genesis block gets in with fJustCheck, behave correctly

pull/262/head
Luke Dashjr 10 years ago
parent 228d238525
commit 1b178a7f96

@ -1616,6 +1616,7 @@ bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pin
// Special case for the genesis block, skipping connection of its transactions
// (its coinbase is unspendable)
if (block.GetHash() == Params().HashGenesisBlock()) {
if (!fJustCheck)
view.SetBestBlock(pindex->GetBlockHash());
return true;
}

Loading…
Cancel
Save