cmd/bootnode: stop after generating/writing nodekey

This commit is contained in:
Bas van Kervel 2017-04-24 10:40:20 +02:00
parent d2fda73ad7
commit ecec454e92
No known key found for this signature in database
GPG Key ID: BFB23B252EF5812B
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ func main() {
if err = crypto.SaveECDSA(*genKey, nodeKey); err != nil {
utils.Fatalf("%v", err)
}
return
case *nodeKeyFile == "" && *nodeKeyHex == "":
utils.Fatalf("Use -nodekey or -nodekeyhex to specify a private key")
case *nodeKeyFile != "" && *nodeKeyHex != "":