From b372f4cae1b4dec49ac2cf1983b74c818a3b3e65 Mon Sep 17 00:00:00 2001 From: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com> Date: Tue, 7 Sep 2021 08:12:24 -0700 Subject: [PATCH] fix: minimum-gas-price warning (#10071) --- server/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/start.go b/server/start.go index d26fc7ad7a7a..bda8b6ed8117 100644 --- a/server/start.go +++ b/server/start.go @@ -249,7 +249,7 @@ func startInProcess(ctx *Context, clientCtx client.Context, appCreator types.App if err := config.ValidateBasic(); err != nil { ctx.Logger.Error("WARNING: The minimum-gas-prices config in app.toml is set to the empty string. " + "This defaults to 0 in the current version, but will error in the next version " + - "(SDK v0.44). Please explicitly put the desired minimum-gas-prices in your app.toml.") + "(SDK v0.45). Please explicitly put the desired minimum-gas-prices in your app.toml.") } app := appCreator(ctx.Logger, db, traceWriter, ctx.Viper)