diff --git a/common/constants/constants.go.testnet b/common/constants/constants.go.testnet index d2a0776335..9169479db4 100644 --- a/common/constants/constants.go.testnet +++ b/common/constants/constants.go.testnet @@ -15,7 +15,7 @@ const ( EpocBlockOpening = 850 EpocBlockRandomize = 900 MaxMasternodes = 18 - MaxMasternodesV2 = 108 + MaxMasternodesV2 = 10 LimitPenaltyEpoch = 4 LimitPenaltyEpochV2 = 0 BlocksPerYearTest = uint64(200000) @@ -36,7 +36,7 @@ var TIP2019Block = big.NewInt(1) var TIPSigning = big.NewInt(3000000) var TIPRandomize = big.NewInt(3464000) -var TIPV2SwitchBlock = big.NewInt(99999999999) +var TIPV2SwitchBlock = big.NewInt(56000000) var TIPIncreaseMasternodes = big.NewInt(5000000) // Upgrade MN Count at Block. var TIPNoHalvingMNReward = big.NewInt(23779191) // hardfork no halving masternodes reward diff --git a/params/config.go b/params/config.go index a050c45cd5..dbc2a61ad4 100644 --- a/params/config.go +++ b/params/config.go @@ -52,7 +52,7 @@ var ( TestnetV2Configs = map[uint64]*V2Config{ Default: { SwitchRound: 0, - CertThreshold: 7, + CertThreshold: 7, //based on masternode is 10 TimeoutSyncThreshold: 3, TimeoutPeriod: 60, MinePeriod: 2, diff --git a/params/version.go b/params/version.go index 9ace94cad6..8cf553f207 100644 --- a/params/version.go +++ b/params/version.go @@ -23,8 +23,8 @@ import ( const ( VersionMajor = 1 // Major version component of the current release VersionMinor = 4 // Minor version component of the current release - VersionPatch = 8 // Patch version component of the current release - VersionMeta = "stable" // Version metadata to append to the version string + VersionPatch = 9 // Patch version component of the current release + VersionMeta = "beta" // Version metadata to append to the version string ) // Version holds the textual version string.