ceremonyclient/node/config/version.go

26 lines
411 B
Go
Raw Normal View History

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