diff --git a/p2pool/types/protocol.go b/p2pool/types/protocol.go index a9698c4..c0b3feb 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 = 7 & 0xFFFF +const CurrentSoftwareVersionMinor = 8 & 0xFFFF const CurrentSoftwareVersion SoftwareVersion = (CurrentSoftwareVersionMajor << 16) | CurrentSoftwareVersionMinor const CurrentSoftwareId = SoftwareIdGoObserver