Fixed key import for empty entries
This commit is contained in:
parent
3889785017
commit
6151ae7db5
@ -74,8 +74,12 @@ func NewKeyRingFromString(content string) (*KeyRing, error) {
|
|||||||
} else if len(words) != 1 {
|
} else if len(words) != 1 {
|
||||||
return nil, fmt.Errorf("Unrecognised key format")
|
return nil, fmt.Errorf("Unrecognised key format")
|
||||||
}
|
}
|
||||||
secrets = append(secrets, ethutil.Hex2Bytes(secret))
|
|
||||||
|
if len(secret) != 0 {
|
||||||
|
secrets = append(secrets, ethutil.Hex2Bytes(secret))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return NewKeyRingFromSecrets(secrets)
|
return NewKeyRingFromSecrets(secrets)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user