bump name

This commit is contained in:
Cassandra Heart 2024-07-05 02:19:53 -05:00
parent 26ebfb811d
commit c85a9a88b3
No known key found for this signature in database
GPG Key ID: 6352152859385958
3 changed files with 4 additions and 4 deletions

View File

@ -725,11 +725,11 @@ func logoVersion(width int) string {
out += " ''---.. ...---'' ##\n" out += " ''---.. ...---'' ##\n"
out += " ''----------''\n" out += " ''----------''\n"
out += " \n" out += " \n"
out += " Quilibrium Node - v" + config.GetVersionString() + " Solstice\n" out += " Quilibrium Node - v" + config.GetVersionString() + " Centauri\n"
out += " \n" out += " \n"
out += " DB Console\n" out += " DB Console\n"
} else { } else {
out = "Quilibrium Node - v" + config.GetVersionString() + " Solstice - DB Console\n" out = "Quilibrium Node - v" + config.GetVersionString() + " Centauri - DB Console\n"
} }
return out return out
} }

View File

@ -933,5 +933,5 @@ func printVersion() {
patchString = fmt.Sprintf("-p%d", patch) patchString = fmt.Sprintf("-p%d", patch)
} }
fmt.Println(" ") fmt.Println(" ")
fmt.Println(" Quilibrium Node - v" + config.GetVersionString() + patchString + " Solstice") fmt.Println(" Quilibrium Node - v" + config.GetVersionString() + patchString + " Centauri")
} }

View File

@ -64,7 +64,7 @@ var BITMASK_ALL = []byte{
// While we iterate through these next phases, we're going to aggressively // While we iterate through these next phases, we're going to aggressively
// enforce keeping updated. This will be achieved through announce strings // enforce keeping updated. This will be achieved through announce strings
// that will vary with each update // that will vary with each update
var ANNOUNCE_PREFIX = "quilibrium-1.4.20-solstice-" var ANNOUNCE_PREFIX = "quilibrium-1.4.21-centauri-"
func getPeerID(p2pConfig *config.P2PConfig) peer.ID { func getPeerID(p2pConfig *config.P2PConfig) peer.ID {
peerPrivKey, err := hex.DecodeString(p2pConfig.PeerPrivKey) peerPrivKey, err := hex.DecodeString(p2pConfig.PeerPrivKey)