go-waku/waku/v2/utils/time.go

15 lines
389 B
Go
Raw Normal View History

2021-10-12 13:12:54 +00:00
package utils
import "time"
// GetUnixEpoch converts a time into a unix timestamp with nanoseconds
func GetUnixEpochFrom(now time.Time) int64 {
return now.UnixNano()
2021-10-18 13:48:04 +00:00
}
// GetUnixEpoch returns the current time in unix timestamp with the integer part
// representing seconds and the decimal part representing subseconds
func GetUnixEpoch() int64 {
return GetUnixEpochFrom(time.Now())
2021-10-12 13:12:54 +00:00
}