Skip to content

Commit

Permalink
Merge pull request #108 from irisnet/develop
Browse files Browse the repository at this point in the history
R4R: Release v0.32.1
  • Loading branch information
Haifeng Xi authored Nov 22, 2019
2 parents 1030bc7 + eb62cce commit 0cb87cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions consensus/reactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0cb87cf

Please sign in to comment.