aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-02-25 01:03:10 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-02-25 01:05:10 +0800
commit923950ccaaa4f9c1c0cebfbdd99fb0f16c47fd37 (patch)
tree8b268fcfcf2585c38db00d57b5bf5da4c2040473 /crypto
parent91a8c08f037c1ec737d15ce00c6720015347e0d6 (diff)
downloaddexon-923950ccaaa4f9c1c0cebfbdd99fb0f16c47fd37.tar
dexon-923950ccaaa4f9c1c0cebfbdd99fb0f16c47fd37.tar.gz
dexon-923950ccaaa4f9c1c0cebfbdd99fb0f16c47fd37.tar.bz2
dexon-923950ccaaa4f9c1c0cebfbdd99fb0f16c47fd37.tar.lz
dexon-923950ccaaa4f9c1c0cebfbdd99fb0f16c47fd37.tar.xz
dexon-923950ccaaa4f9c1c0cebfbdd99fb0f16c47fd37.tar.zst
dexon-923950ccaaa4f9c1c0cebfbdd99fb0f16c47fd37.zip
Fix key store address hex decoding and accounts test
Thanks to https://github.com/jaekwon for original fix!
Diffstat (limited to 'crypto')
-rw-r--r--crypto/key_store_plain.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/crypto/key_store_plain.go b/crypto/key_store_plain.go
index 255ae0ed7..338a4a2c3 100644
--- a/crypto/key_store_plain.go
+++ b/crypto/key_store_plain.go
@@ -119,8 +119,11 @@ func GetKeyAddresses(keysDirPath string) (addresses [][]byte, err error) {
}
addresses = make([][]byte, len(fileInfos))
for i, fileInfo := range fileInfos {
- addresses[i] = make([]byte, 40)
- addresses[i] = []byte(fileInfo.Name())
+ address, err := hex.DecodeString(fileInfo.Name())
+ if err != nil {
+ continue
+ }
+ addresses[i] = address
}
return addresses, err
}