diff --git a/blockchain/validate.go b/blockchain/validate.go index e34fc23f..7836686e 100644 --- a/blockchain/validate.go +++ b/blockchain/validate.go @@ -2327,13 +2327,6 @@ func (b *BlockChain) checkConnectBlock(node *blockNode, block, parent *dcrutil.B // implementation only currently uses memory for the side chain blocks, // it isn't currently necessary. - // The coinbase for the Genesis block is not spendable, so just return - // an error now. - if node.hash.IsEqual(b.chainParams.GenesisHash) { - str := "the coinbase for the genesis block is not spendable" - return ruleError(ErrMissingTxOut, str) - } - // Ensure the view is for the node being checked. parentHash := &block.MsgBlock().Header.PrevBlock if !utxoView.BestHash().IsEqual(parentHash) {