Add timezone to GUI timestamps

This commit is contained in:
Jamie Holdstock 2021-05-17 03:45:47 +01:00 committed by Jamie Holdstock
parent 8b5cd2a014
commit 1988322cac

View File

@ -24,5 +24,5 @@ func blockURL(blockExplorerURL string) func(int64) string {
} }
func dateTime(t int64) string { func dateTime(t int64) string {
return time.Unix(t, 0).Format("2 Jan 2006 15:04:05") return time.Unix(t, 0).Format("2 Jan 2006 15:04:05 MST")
} }