From adcbf5474854eb045f0611ed942ce3c10ee68f1c Mon Sep 17 00:00:00 2001 From: wangchao Date: Fri, 27 Nov 2020 15:14:58 +0800 Subject: [PATCH] fix: start a new line in print miner-info to avoid ambiguous display --- cli/state.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/state.go b/cli/state.go index bb7c65428..dd9a75a49 100644 --- a/cli/state.go +++ b/cli/state.go @@ -128,6 +128,7 @@ var stateMinerInfo = &cli.Command{ } fmt.Printf("%s ", a) } + fmt.Println() fmt.Printf("Consensus Fault End:\t%d\n", mi.ConsensusFaultElapsed) fmt.Printf("SectorSize:\t%s (%d)\n", types.SizeStr(types.NewInt(uint64(mi.SectorSize))), mi.SectorSize)