consensus v3.1.0
Some checks are pending
continuous-integration/drone/push Build is running
continuous-integration/drone/tag Build is passing

This commit is contained in:
DataHoarder 2024-04-05 18:11:20 +02:00
parent 61cfc4478c
commit 775f880a2f
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

View file

@ -106,7 +106,11 @@ func (v SoftwareVersion) String() string {
}
const SupportedProtocolVersion = ProtocolVersion_1_2
const CurrentSoftwareVersion SoftwareVersion = (3 << 16) | 0
const CurrentSoftwareVersionMajor = 3 & 0xFFFF
const CurrentSoftwareVersionMinor = 1 & 0xFFFF
const CurrentSoftwareVersion SoftwareVersion = (CurrentSoftwareVersionMajor << 16) | CurrentSoftwareVersionMinor
const CurrentSoftwareId = SoftwareIdGoObserver
type SoftwareId uint32