update 07-tm err msg to utc time (#6383)

Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
This commit is contained in:
colin axner
2020-06-10 08:54:23 +00:00
committed by GitHub
co-authored by Federico Kunze
parent 744c1ce250
commit a8298976ac
+1 -1
View File
@@ -75,7 +75,7 @@ func checkValidity(
return sdkerrors.Wrapf(
clienttypes.ErrInvalidHeader,
"header blocktime ≤ latest client state block time (%s ≤ %s)",
header.Time.String(), clientState.GetLatestTimestamp().String(),
header.Time.UTC(), clientState.GetLatestTimestamp().UTC(),
)
}