good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 1528b791 authored by Martin Holst Swende's avatar Martin Holst Swende Committed by GitHub
Browse files

node: do not continue if 'signer' is used but connection fails (#19441)

 This makes geth fails instead of falling back to local keystore, if the command line flag `--signer` is used
parent d5af3a58
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment