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 01:54:23 -07:00 committed by GitHub
parent 744c1ce250
commit a8298976ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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(),
)
}