Compare commits

..

2 Commits

Author SHA1 Message Date
Cassandra Heart
55c70915c8
update to v2.0.2 announcement 2024-10-25 15:37:54 -05:00
Cassandra Heart
840df58634
move back to 4 trips for obsaddr 2024-10-24 02:36:18 -05:00
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ import (
// can be contacted on. The "seen" events expire by default after 40 minutes
// (OwnObservedAddressTTL * ActivationThreshold). The are cleaned up during
// the GC rounds set by GCInterval.
var ActivationThresh = 1
var ActivationThresh = 4
// observedAddrManagerWorkerChannelSize defines how many addresses can be enqueued
// for adding to an ObservedAddrManager.

View File

@ -55,7 +55,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)