mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 02:40:45 +00:00
Merge pull request #661 from benjamin202410/mainnet-hot-fix-v2.2.0
This commit is contained in:
commit
d355ad1257
2 changed files with 9 additions and 1 deletions
|
|
@ -56,6 +56,14 @@ var (
|
||||||
TimeoutPeriod: 600,
|
TimeoutPeriod: 600,
|
||||||
MinePeriod: 2,
|
MinePeriod: 2,
|
||||||
},
|
},
|
||||||
|
8000: {
|
||||||
|
MaxMasternodes: 108,
|
||||||
|
SwitchRound: 8000,
|
||||||
|
CertThreshold: 0.667,
|
||||||
|
TimeoutSyncThreshold: 2,
|
||||||
|
TimeoutPeriod: 60,
|
||||||
|
MinePeriod: 2,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
TestnetV2Configs = map[uint64]*V2Config{
|
TestnetV2Configs = map[uint64]*V2Config{
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ import (
|
||||||
const (
|
const (
|
||||||
VersionMajor = 2 // Major version component of the current release
|
VersionMajor = 2 // Major version component of the current release
|
||||||
VersionMinor = 2 // Minor 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
|
VersionMeta = "stable" // Version metadata to append to the version string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue