mirror of
https://github.com/tendermint/tendermint.git
synced 2026-08-28 11:56:15 +00:00
check that we have enough arguments
Otherwise:
```
panic: runtime error: index out of range
goroutine 1 [running]:
panic(0xbb8de0, 0xc82000e080)
/usr/local/go/src/runtime/panic.go:464 +0x3e6
main.main()
/go/src/github.com/tendermint/tendermint/cmd/tendermint/main.go:48 +0x811
```
This commit is contained in:
+12
-2
@@ -45,9 +45,19 @@ Commands:
|
||||
case "node":
|
||||
run_node(config)
|
||||
case "replay":
|
||||
consensus.RunReplayFile(config, args[1], false)
|
||||
if len(args) > 1 {
|
||||
consensus.RunReplayFile(config, args[1], false)
|
||||
} else {
|
||||
fmt.Println("replay requires an argument (walfile)")
|
||||
os.Exit(1)
|
||||
}
|
||||
case "replay_console":
|
||||
consensus.RunReplayFile(config, args[1], true)
|
||||
if len(args) > 1 {
|
||||
consensus.RunReplayFile(config, args[1], true)
|
||||
} else {
|
||||
fmt.Println("replay_console requires an argument (walfile)")
|
||||
os.Exit(1)
|
||||
}
|
||||
case "init":
|
||||
init_files()
|
||||
case "show_validator":
|
||||
|
||||
Reference in New Issue
Block a user