Skip to content

Commit

Permalink
bump version to v0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricfung committed Sep 28, 2022
1 parent 073ece1 commit 0953496
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

const (
Debug = true
BuildVersion = "v0.14.1-BUILD_VERSION"
BuildVersion = "v0.14.2-BUILD_VERSION"

MainnetId = "6430225c42bb015b4da03102fa962e4f4ef3969e03e04345db229f8377ef7997"

Expand Down
4 changes: 2 additions & 2 deletions kernel/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ func (node *Node) buildChain(chainId crypto.Hash) *Chain {
if err != nil {
panic(err)
}
if node.GetRemovedOrCancelledNode(chainId) != nil {
if node.GetRemovedOrCancelledNode(chainId) != nil && chainId.String() != "8162a5b9f70201371a7bccb7047dc67282eb2c6adc499bd30396c5088a164792" {
return chain
// FIXME
// return chain
// this comment because we can't ensure the last round of a removed node yet
// thus will cause inconsistence when calculate mint works
}
Expand Down

0 comments on commit 0953496

Please sign in to comment.