Merge pull request #661 from benjamin202410/mainnet-hot-fix-v2.2.0

This commit is contained in:
Anil Chinchawale 2024-10-02 08:11:31 +05:30 committed by GitHub
commit d355ad1257
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -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{

View file

@ -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
)