diff --git a/consensus/reactor.go b/consensus/reactor.go index cacacb4c5c3..d025536ae41 100644 --- a/consensus/reactor.go +++ b/consensus/reactor.go @@ -505,8 +505,9 @@ OUTER_LOOP: if prs.ProposalBlockParts == nil { blockMeta := conR.conS.blockStore.LoadBlockMeta(prs.Height) if blockMeta == nil { - cmn.PanicCrisis(fmt.Sprintf("Failed to load block %d when blockStore is at %d", - prs.Height, conR.conS.blockStore.Height())) + //cmn.PanicCrisis(fmt.Sprintf("Failed to load block %d when blockStore is at %d", + // prs.Height, conR.conS.blockStore.Height())) + continue OUTER_LOOP } ps.InitProposalBlockParts(blockMeta.BlockID.PartsHeader) // continue the loop since prs is a copy and not effected by this initialization diff --git a/version/version.go b/version/version.go index d8bd764f76e..6f9aa532a00 100644 --- a/version/version.go +++ b/version/version.go @@ -18,7 +18,7 @@ const ( // TMCoreSemVer is the current version of Tendermint Core. // It's the Semantic Version of the software. // Must be a string because scripts like dist.sh read this file. - TMCoreSemVer = "0.32.0" + TMCoreSemVer = "0.32.1" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.15.0"