ceremonyclient/node/config/version.go

30 lines
478 B
Go
Raw Normal View History

package config
import (
"fmt"
"time"
)
func GetMinimumVersionCutoff() time.Time {
2024-04-04 06:40:57 +00:00
return time.Date(2024, time.April, 4, 6, 20, 0, 0, time.UTC)
}
func GetMinimumVersion() []byte {
2024-04-09 04:35:51 +00:00
return []byte{0x01, 0x04, 0x10}
}
func GetVersion() []byte {
2024-04-09 04:35:51 +00:00
return []byte{0x01, 0x04, 0x10}
}
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
)
}