From d57757730d731c1907b00a08ab25b9d1b0ee7667 Mon Sep 17 00:00:00 2001 From: Cassandra Heart Date: Thu, 24 Oct 2024 21:54:42 -0500 Subject: [PATCH] upgrade version --- node/config/version.go | 8 ++++---- node/p2p/blossomsub.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/node/config/version.go b/node/config/version.go index f561849..820cf42 100644 --- a/node/config/version.go +++ b/node/config/version.go @@ -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 } diff --git a/node/p2p/blossomsub.go b/node/p2p/blossomsub.go index 4787f7f..f50afe5 100644 --- a/node/p2p/blossomsub.go +++ b/node/p2p/blossomsub.go @@ -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)