diff --git a/params/config.go b/params/config.go index 0d53be349ee2..7144f2ab5b24 100644 --- a/params/config.go +++ b/params/config.go @@ -88,6 +88,14 @@ var ( TimeoutPeriod: 10, MinePeriod: 2, }, + 17584000: { + MaxMasternodes: 108, + SwitchRound: 17584000, + CertThreshold: 0.667, + TimeoutSyncThreshold: 3, + TimeoutPeriod: 300, + MinePeriod: 2, + }, } TestnetV2Configs = map[uint64]*V2Config{ diff --git a/params/version.go b/params/version.go index f04c2fcda096..e17ec1018d46 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ const ( VersionMajor = 2 // Major version component of the current release VersionMinor = 4 // Minor 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 + VersionMeta = "hotfix" // Version metadata to append to the version string ) // Version holds the textual version string.