accounts/usbwallet: support Ledger app version <1.0.2

This commit is contained in:
Péter Szilágyi 2017-01-27 13:23:24 +02:00
parent 1ecf99bd0f
commit 470b79385b
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D

View File

@ -330,9 +330,13 @@ func (hub *LedgerHub) rescan() {
id := uint16(device.Bus)<<8 + uint16(device.Address)
hub.wallets[id] = wallet
if wallet.resolveVersion() != nil || wallet.resolveAddress() != nil {
if wallet.resolveAddress() != nil {
glog.V(logger.Info).Infof("ledger wallet [%s] connected, Ethereum app not started", wallet.url)
} else {
// Try to resolve the Ethereum app's version, will fail prior to v1.0.2
if wallet.resolveVersion() != nil {
wallet.version = [3]byte{1, 0, 0} // Assume worst case, can't verify if v1.0.0 or v1.0.1
}
hub.accounts = append(hub.accounts, accounts.Account{
Address: wallet.address,
URL: wallet.url,