|
|
|
@ -82,6 +82,9 @@ type Config struct { |
|
|
|
|
// scrypt KDF at the expense of security.
|
|
|
|
|
UseLightweightKDF bool `toml:",omitempty"` |
|
|
|
|
|
|
|
|
|
// NoUSB disables hardware wallet monitoring and connectivity.
|
|
|
|
|
NoUSB bool `toml:",omitempty"` |
|
|
|
|
|
|
|
|
|
// IPCPath is the requested location to place the IPC endpoint. If the path is
|
|
|
|
|
// a simple file name, it is placed inside the data directory (or on the root
|
|
|
|
|
// pipe path on Windows), whereas if it's a resolvable path name (absolute or
|
|
|
|
@ -389,10 +392,12 @@ func makeAccountManager(conf *Config) (*accounts.Manager, string, error) { |
|
|
|
|
backends := []accounts.Backend{ |
|
|
|
|
keystore.NewKeyStore(keydir, scryptN, scryptP), |
|
|
|
|
} |
|
|
|
|
if ledgerhub, err := usbwallet.NewLedgerHub(); err != nil { |
|
|
|
|
log.Warn(fmt.Sprintf("Failed to start Ledger hub, disabling: %v", err)) |
|
|
|
|
} else { |
|
|
|
|
backends = append(backends, ledgerhub) |
|
|
|
|
if !conf.NoUSB { |
|
|
|
|
if ledgerhub, err := usbwallet.NewLedgerHub(); err != nil { |
|
|
|
|
log.Warn(fmt.Sprintf("Failed to start Ledger hub, disabling: %v", err)) |
|
|
|
|
} else { |
|
|
|
|
backends = append(backends, ledgerhub) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return accounts.NewManager(backends...), ephemeral, nil |
|
|
|
|
} |
|
|
|
|