ceremonyclient/node/config/version.go
Cassandra Heart 06947eb307
v1.4.18
2024-05-25 00:07:57 -05:00

30 lines
476 B
Go

package config
import (
"fmt"
"time"
)
func GetMinimumVersionCutoff() time.Time {
return time.Date(2024, time.May, 24, 4, 0, 0, 0, time.UTC)
}
func GetMinimumVersion() []byte {
return []byte{0x01, 0x04, 0x12}
}
func GetVersion() []byte {
return []byte{0x01, 0x04, 0x12}
}
func GetVersionString() string {
return FormatVersion(GetVersion())
}
func FormatVersion(version []byte) string {
return fmt.Sprintf(
"%d.%d.%d",
version[0], version[1], version[2],
)
}