mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 04:36:42 +00:00
reduce timeout to 10s
This commit is contained in:
parent
7a83657d70
commit
5084c63fbb
2 changed files with 10 additions and 1 deletions
|
|
@ -107,6 +107,15 @@ var (
|
||||||
MinePeriod: 2,
|
MinePeriod: 2,
|
||||||
ExpTimeoutConfig: ExpTimeoutConfig{Base: 1.0, MaxExponent: 0},
|
ExpTimeoutConfig: ExpTimeoutConfig{Base: 1.0, MaxExponent: 0},
|
||||||
},
|
},
|
||||||
|
20277000: {
|
||||||
|
MaxMasternodes: 108,
|
||||||
|
SwitchRound: 20277000,
|
||||||
|
CertThreshold: 0.667,
|
||||||
|
TimeoutSyncThreshold: 3,
|
||||||
|
TimeoutPeriod: 10,
|
||||||
|
MinePeriod: 2,
|
||||||
|
ExpTimeoutConfig: ExpTimeoutConfig{Base: 1.0, MaxExponent: 0},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
DevnetV2Configs = map[uint64]*V2Config{
|
DevnetV2Configs = 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 = 6 // Minor version component of the current release
|
VersionMinor = 6 // Minor version component of the current release
|
||||||
VersionPatch = 6 // Patch version component of the current release
|
VersionPatch = 7 // Patch version component of the current release
|
||||||
VersionMeta = "testnet" // Version metadata to append to the version string
|
VersionMeta = "testnet" // Version metadata to append to the version string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue