diff --git a/params/config.go b/params/config.go index a68b80a74d65..cd0a9eca03d4 100644 --- a/params/config.go +++ b/params/config.go @@ -56,6 +56,14 @@ var ( TimeoutPeriod: 600, MinePeriod: 2, }, + 8000: { + MaxMasternodes: 108, + SwitchRound: 8000, + CertThreshold: 0.667, + TimeoutSyncThreshold: 2, + TimeoutPeriod: 60, + MinePeriod: 2, + }, } TestnetV2Configs = map[uint64]*V2Config{ diff --git a/params/version.go b/params/version.go index c631d85ebea2..b203e806ab82 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 2 // Major version component of the current release VersionMinor = 2 // Minor version component of the current release - VersionPatch = 3 // Patch version component of the current release + VersionPatch = 4 // Patch version component of the current release VersionMeta = "stable" // Version metadata to append to the version string )