mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
node: do not continue if 'signer' is used but connection fails
This commit is contained in:
parent
1fc3e44ffe
commit
de0329be3b
1 changed files with 1 additions and 1 deletions
|
|
@ -482,7 +482,7 @@ func makeAccountManager(conf *Config) (*accounts.Manager, string, error) {
|
|||
if extapi, err := external.NewExternalBackend(conf.ExternalSigner); err == nil {
|
||||
backends = append(backends, extapi)
|
||||
} else {
|
||||
log.Info("Error configuring external signer", "error", err)
|
||||
return nil, "", fmt.Errorf("error connecting to external signer: %v", err)
|
||||
}
|
||||
}
|
||||
if len(backends) == 0 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue