Skip to content

Commit

Permalink
: colon => dash - in keyfile name - slight deviation from ISO8601 for…
Browse files Browse the repository at this point in the history
… WIN FS compatibility
  • Loading branch information
zelig committed Jul 9, 2015
1 parent a2333bc commit 589f1c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/key_store_plain.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 589f1c8

Please sign in to comment.