mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 18:30:45 +00:00
accounts/keystore: fix negative timezone sign in toISO8601 (#35245)
This commit is contained in:
parent
5c253e557e
commit
b6e2f13a9a
1 changed files with 1 additions and 1 deletions
|
|
@ -230,7 +230,7 @@ func toISO8601(t time.Time) string {
|
||||||
if name == "UTC" {
|
if name == "UTC" {
|
||||||
tz = "Z"
|
tz = "Z"
|
||||||
} else {
|
} else {
|
||||||
tz = fmt.Sprintf("%03d00", offset/3600)
|
tz = fmt.Sprintf("%+03d00", offset/3600)
|
||||||
}
|
}
|
||||||
return fmt.Sprintf("%04d-%02d-%02dT%02d-%02d-%02d.%09d%s",
|
return fmt.Sprintf("%04d-%02d-%02dT%02d-%02d-%02d.%09d%s",
|
||||||
t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), tz)
|
t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), tz)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue