remove data dir default

This commit is contained in:
William Banfield
2022-09-02 11:56:17 -04:00
parent 114e521e9a
commit 8b57f6bb7c

View File

@@ -17,7 +17,7 @@ import (
var (
db = flag.String("database-type", "goleveldb", "the type of database holding the blockstore")
dir = flag.String("data-dir", "~/.tendermint/data", "path to the directory containing the tendermint databases")
dir = flag.String("data-dir", "", "path to the directory containing the tendermint databases")
csvOut = flag.String("csv", "", "dump the extracted latencies as raw csv for use in additional tooling")
)