Skip to content

Commit

Permalink
bump version to v0.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricfung committed Sep 28, 2022
1 parent 9a2e713 commit 2c51337
Show file tree
Hide file tree
Showing 2 changed files with 2 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.2-BUILD_VERSION"
BuildVersion = "v0.14.3-BUILD_VERSION"

MainnetId = "6430225c42bb015b4da03102fa962e4f4ef3969e03e04345db229f8377ef7997"

Expand Down
3 changes: 1 addition & 2 deletions kernel/round.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ type FinalRound struct {

func (node *Node) LoadAllChainsAndGraphTimestamp(store storage.Store, networkId crypto.Hash) error {
nodes := node.NodesListWithoutState(uint64(clock.Now().UnixNano()), false)
logger.Printf("node.LoadAllChainsAndGraphTimestamp(%s) => %d", networkId, len(nodes))

for _, cn := range nodes {
if cn.State == common.NodeStatePledging || cn.State == common.NodeStateCancelled {
continue
Expand All @@ -48,6 +46,7 @@ func (node *Node) LoadAllChainsAndGraphTimestamp(store storage.Store, networkId
node.GraphTimestamp = t
}
}
logger.Printf("node.LoadAllChainsAndGraphTimestamp(%s) => %d %d", networkId, len(nodes), node.GraphTimestamp)

node.chains.RLock()
for _, chain := range node.chains.m {
Expand Down

0 comments on commit 2c51337

Please sign in to comment.