upgrade version

This commit is contained in:
Cassandra Heart 2024-10-24 21:54:42 -05:00
parent 1e590ad159
commit d57757730d
No known key found for this signature in database
GPG Key ID: 6352152859385958
2 changed files with 5 additions and 5 deletions

View File

@ -6,15 +6,15 @@ import (
)
func GetMinimumVersionCutoff() time.Time {
return time.Date(2024, time.October, 12, 11, 0, 0, 0, time.UTC)
return time.Date(2024, time.October, 24, 11, 0, 0, 0, time.UTC)
}
func GetMinimumVersion() []byte {
return []byte{0x02, 0x00, 0x01}
return []byte{0x02, 0x00, 0x02}
}
func GetVersion() []byte {
return []byte{0x02, 0x00, 0x01}
return []byte{0x02, 0x00, 0x02}
}
func GetVersionString() string {
@ -40,5 +40,5 @@ func GetPatchNumber() byte {
}
func GetRCNumber() byte {
return 0x04
return 0x00
}

View File

@ -70,7 +70,7 @@ var BITMASK_ALL = []byte{
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
}
var ANNOUNCE_PREFIX = "quilibrium-2.0.0-dusk-"
var ANNOUNCE_PREFIX = "quilibrium-2.0.2-dusk-"
func getPeerID(p2pConfig *config.P2PConfig) peer.ID {
peerPrivKey, err := hex.DecodeString(p2pConfig.PeerPrivKey)