diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-10 00:06:39 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-10 00:06:39 +0800 |
commit | 98f4c936f25de27dbc90f36f2c1ffd1f23b114e9 (patch) | |
tree | 07f8b038c7421e1a9af0fd54e7b78e0002c4591e /crypto/key_store_plain.go | |
parent | 423c2f499c2350ae54d02a3151686ebd39fc8c94 (diff) | |
parent | 344277d026001d8e114ebfad92f1c385dcd3d3da (diff) | |
download | go-tangerine-98f4c936f25de27dbc90f36f2c1ffd1f23b114e9.tar go-tangerine-98f4c936f25de27dbc90f36f2c1ffd1f23b114e9.tar.gz go-tangerine-98f4c936f25de27dbc90f36f2c1ffd1f23b114e9.tar.bz2 go-tangerine-98f4c936f25de27dbc90f36f2c1ffd1f23b114e9.tar.lz go-tangerine-98f4c936f25de27dbc90f36f2c1ffd1f23b114e9.tar.xz go-tangerine-98f4c936f25de27dbc90f36f2c1ffd1f23b114e9.tar.zst go-tangerine-98f4c936f25de27dbc90f36f2c1ffd1f23b114e9.zip |
Merge branch 'release/0.9.38'v0.9.38
Diffstat (limited to 'crypto/key_store_plain.go')
-rw-r--r-- | crypto/key_store_plain.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/key_store_plain.go b/crypto/key_store_plain.go index 428d01e25..8c405ebcd 100644 --- a/crypto/key_store_plain.go +++ b/crypto/key_store_plain.go @@ -189,7 +189,7 @@ func toISO8601(t time.Time) string { } else { tz = fmt.Sprintf("%03d00", offset/3600) } - 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) + 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) } func getKeyAddresses(keysDirPath string) (addresses []common.Address, err error) { |