From ca5d0579ea8e9faa6b6e8c81f6c30d91ffa582b6 Mon Sep 17 00:00:00 2001 From: Cassandra Heart Date: Thu, 21 Nov 2024 19:38:21 -0600 Subject: [PATCH] bump version --- node/config/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node/config/version.go b/node/config/version.go index 391dccd..5abb21b 100644 --- a/node/config/version.go +++ b/node/config/version.go @@ -10,7 +10,7 @@ func GetMinimumVersionCutoff() time.Time { } func GetMinimumVersion() []byte { - return []byte{0x02, 0x00, 0x03} + return []byte{0x02, 0x00, 0x04} } func GetVersion() []byte { @@ -36,9 +36,9 @@ func FormatVersion(version []byte) string { } func GetPatchNumber() byte { - return 0x00 + return 0x01 } func GetRCNumber() byte { - return 0x00 + return 0x01 }