From 1988322cac9393462e62adabfbc487bc988fc922 Mon Sep 17 00:00:00 2001 From: Jamie Holdstock Date: Mon, 17 May 2021 03:45:47 +0100 Subject: [PATCH] Add timezone to GUI timestamps --- webapi/formatting.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapi/formatting.go b/webapi/formatting.go index ae51fda..a65e068 100644 --- a/webapi/formatting.go +++ b/webapi/formatting.go @@ -24,5 +24,5 @@ func blockURL(blockExplorerURL string) func(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") }