From 7f743037a3090544aa04d5046d2fdd5fe0037cf6 Mon Sep 17 00:00:00 2001 From: chengwenxi Date: Mon, 11 Nov 2019 14:27:48 +0800 Subject: [PATCH 1/2] dont panic --- consensus/reactor.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 From cf338ee3d91f679d1dbeabc0cc1d776a54b27c02 Mon Sep 17 00:00:00 2001 From: zhangyelong Date: Mon, 11 Nov 2019 17:10:06 +0800 Subject: [PATCH 2/2] Update version --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"