ceremonyclient/node/config/version.go

30 lines
479 B
Go
Raw Normal View History

package config
import (
"fmt"
"time"
)
func GetMinimumVersionCutoff() time.Time {
return time.Date(2024, time.March, 27, 8, 30, 0, 0, time.UTC)
}
func GetMinimumVersion() []byte {
return []byte{0x01, 0x04, 0x0D}
}
func GetVersion() []byte {
return []byte{0x01, 0x04, 0x0D}
}
func GetVersionString() string {
return FormatVersion(GetVersion())
}
func FormatVersion(version []byte) string {
2024-03-17 21:14:37 +00:00
return fmt.Sprintf(
"%d.%d.%d",
version[0], version[1], version[2],
2024-03-17 21:14:37 +00:00
)
}