From ef0e81c79cc076c89221f8c109cf63d4ddfcd0eb Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Fri, 18 Nov 2022 14:44:56 +0700 Subject: [PATCH] fix flag --- cmd/junod/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/junod/root.go b/cmd/junod/root.go index 87502b417..c947c144d 100644 --- a/cmd/junod/root.go +++ b/cmd/junod/root.go @@ -239,7 +239,7 @@ func (ac appCreator) newApp( baseapp.SetSnapshotInterval(cast.ToUint64(appOpts.Get(server.FlagStateSyncSnapshotInterval))), baseapp.SetSnapshotKeepRecent(cast.ToUint32(appOpts.Get(server.FlagStateSyncSnapshotKeepRecent))), baseapp.SetIAVLCacheSize(cast.ToInt(appOpts.Get(server.FlagIAVLCacheSize))), - baseapp.SetIAVLDisableFastNode(cast.ToBool(appOpts.Get(server.FlagIAVLFastNode))), + baseapp.SetIAVLDisableFastNode(cast.ToBool(appOpts.Get(server.FlagDisableIAVLFastNode))), ) }