From 4a3237ddc3296104eb843a13830373e13d6a0079 Mon Sep 17 00:00:00 2001 From: mindcarver <32150062+mindcarver@users.noreply.github.com> Date: Thu, 13 Jul 2023 05:06:43 +0800 Subject: [PATCH] fix: flag accessed but not defined: flush-interval (#1238) --- cmd/tx.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/tx.go b/cmd/tx.go index e1b5e124a..de83c177e 100644 --- a/cmd/tx.go +++ b/cmd/tx.go @@ -723,6 +723,7 @@ $ %s tx link-then-start demo-path --timeout 5s`, appName, appName)), cmd = initBlockFlag(a.viper, cmd) cmd = processorFlag(a.viper, cmd) cmd = updateTimeFlags(a.viper, cmd) + cmd = flushIntervalFlag(a.viper, cmd) return cmd }