From f8ab4717f53130c835b438b138effb5f81b5b38c Mon Sep 17 00:00:00 2001 From: zemyblue Date: Wed, 26 Oct 2022 13:25:05 +0900 Subject: [PATCH] chore: correct ambiguous sentences Signed-off-by: zemyblue --- server/config/config.go | 2 +- server/start.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/config/config.go b/server/config/config.go index f6d974fdc9..c37d1a3641 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -24,7 +24,7 @@ const ( // DefaultGRPCWebAddress defines the default address to bind the gRPC-web server to. DefaultGRPCWebAddress = "0.0.0.0:9091" - // DefaultChanCheckTxSize defines the default maximum size of channel check tx in Baseapp + // DefaultChanCheckTxSize defines the default size of channel check tx in Baseapp DefaultChanCheckTxSize = 10000 ) diff --git a/server/start.go b/server/start.go index 624f1a0f75..763c9507ba 100644 --- a/server/start.go +++ b/server/start.go @@ -176,7 +176,7 @@ is performed. Note, when enabled, gRPC will also be automatically enabled. cmd.Flags().Bool(FlagPrometheus, false, "Enable prometheus metric for app") - cmd.Flags().Uint(FlagChanCheckTxSize, config.DefaultChanCheckTxSize, "The maximum size of the chan-check-tx-size") + cmd.Flags().Uint(FlagChanCheckTxSize, config.DefaultChanCheckTxSize, "The size of the channel check tx") // add support for all Ostracon-specific command line options ostcmd.AddNodeFlags(cmd)