diff --git a/consensus/posv/posv.go b/consensus/posv/posv.go index 6ffa7df47e..9e88f5cdf5 100644 --- a/consensus/posv/posv.go +++ b/consensus/posv/posv.go @@ -500,10 +500,10 @@ func (c *Posv) YourTurn(chain consensus.ChainReader, parent *types.Header, signe } curIndex := position(masternodes, signer) if signer == c.signer { - log.Info("Masternodes cycle info", "number of masternodes", len(masternodes), "previous", pre, "position", preIndex, "current", signer, "position", curIndex) + log.Debug("Masternodes cycle info", "number of masternodes", len(masternodes), "previous", pre, "position", preIndex, "current", signer, "position", curIndex) } for i, s := range masternodes { - log.Info("%d - %s\n", i, s.String()) + log.Debug("Masternode:", "index", i, "address", s.String()) } if (preIndex+1)%len(masternodes) == curIndex { return len(masternodes), preIndex, curIndex, true, nil diff --git a/params/version.go b/params/version.go index b3f510f330..f50d8c12f4 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 1 // Major version component of the current release VersionMinor = 1 // Minor version component of the current release - VersionPatch = 1 // Patch version component of the current release + VersionPatch = 2 // Patch version component of the current release VersionMeta = "stable" // Version metadata to append to the version string )