reduce timeout to 10s

This commit is contained in:
liam.lai 2025-12-18 13:54:26 +04:00
parent 7a83657d70
commit 5084c63fbb
2 changed files with 10 additions and 1 deletions

View file

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

View file

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