diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-09 23:08:09 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-09 23:08:09 +0800 |
commit | 0646cc8d14bc398b28029bda9aefdc9e87bfdc52 (patch) | |
tree | 4e54c6cd4669d1906336bbacf097b616518866ed /crypto | |
parent | 97d22be318add5c5f9e8cb8906c6786ae7a33623 (diff) | |
parent | c3f5403b643f67df4061cb570f3b19ba95f83ba2 (diff) | |
download | dexon-0646cc8d14bc398b28029bda9aefdc9e87bfdc52.tar dexon-0646cc8d14bc398b28029bda9aefdc9e87bfdc52.tar.gz dexon-0646cc8d14bc398b28029bda9aefdc9e87bfdc52.tar.bz2 dexon-0646cc8d14bc398b28029bda9aefdc9e87bfdc52.tar.lz dexon-0646cc8d14bc398b28029bda9aefdc9e87bfdc52.tar.xz dexon-0646cc8d14bc398b28029bda9aefdc9e87bfdc52.tar.zst dexon-0646cc8d14bc398b28029bda9aefdc9e87bfdc52.zip |
Merge pull request #1453 from ethersphere/frozen-accounts
accounts, crypto: fixed file naming for windows
Diffstat (limited to 'crypto')
-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) { |