From b5e12809972db7bf28f4bf8c0584aa42f161ad8c Mon Sep 17 00:00:00 2001 From: mmsqe Date: Mon, 24 Apr 2023 11:39:21 +0800 Subject: [PATCH] fix lint --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index 8b60677548..6d2a8b473d 100644 --- a/app/app.go +++ b/app/app.go @@ -347,7 +347,7 @@ func New( interfaceRegistry := encodingConfig.InterfaceRegistry if cast.ToBool(appOpts.Get(FlagMemIAVL)) { - // cms must be overriden before the other options, because they may use the cms, + // cms must be overridden before the other options, because they may use the cms, // FIXME we are assuming the cms won't be overridden by the other options, but we can't be sure. cms := rootmulti.NewStore(filepath.Join(homePath, "data", "memiavl.db"), logger) baseAppOptions = append([]func(*baseapp.BaseApp){setCMS(cms)}, baseAppOptions...)