From 8b57f6bb7c097a5ac75eabb33b6c08f4ff658054 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Fri, 2 Sep 2022 11:56:17 -0400 Subject: [PATCH] remove data dir default --- test/loadtime/cmd/report/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/loadtime/cmd/report/main.go b/test/loadtime/cmd/report/main.go index c24fda373..a04492728 100644 --- a/test/loadtime/cmd/report/main.go +++ b/test/loadtime/cmd/report/main.go @@ -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") )