From 24ea120fcf8a04e7d1553aeb22cf3bd029d780b6 Mon Sep 17 00:00:00 2001 From: WeebDataHoarder <57538841+WeebDataHoarder@users.noreply.github.com> Date: Sun, 7 Apr 2024 20:24:21 +0200 Subject: [PATCH] Version v3.3.0 --- p2pool/types/protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2pool/types/protocol.go b/p2pool/types/protocol.go index a13156c..e98f01e 100644 --- a/p2pool/types/protocol.go +++ b/p2pool/types/protocol.go @@ -108,7 +108,7 @@ func (v SoftwareVersion) String() string { const SupportedProtocolVersion = ProtocolVersion_1_2 const CurrentSoftwareVersionMajor = 3 & 0xFFFF -const CurrentSoftwareVersionMinor = 2 & 0xFFFF +const CurrentSoftwareVersionMinor = 3 & 0xFFFF const CurrentSoftwareVersion SoftwareVersion = (CurrentSoftwareVersionMajor << 16) | CurrentSoftwareVersionMinor const CurrentSoftwareId = SoftwareIdGoObserver