good morning!!!!

Skip to content
Snippets Groups Projects
Commit c713ea7c authored by Darrel Herbst's avatar Darrel Herbst Committed by Felix Lange
Browse files

cmd/bootnode: fix exit behavior with -genkey (#20110)

parent 7f5f62aa
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,9 @@ func main() {
if err = crypto.SaveECDSA(*genKey, nodeKey); err != nil {
utils.Fatalf("%v", err)
}
return
if !*writeAddr {
return
}
case *nodeKeyFile == "" && *nodeKeyHex == "":
utils.Fatalf("Use -nodekey or -nodekeyhex to specify a private key")
case *nodeKeyFile != "" && *nodeKeyHex != "":
......
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