From ebed8352f8183b8e9b14561b0a8b7c02bbc5744b Mon Sep 17 00:00:00 2001 From: Evan Forbes <42654277+evan-forbes@users.noreply.github.com> Date: Fri, 11 Nov 2022 07:17:12 -0600 Subject: [PATCH] chore: change the default minimum gas fee to something non-zero (#1000) ## Overview update the min fee to something non zero ## Checklist - [x] New and updated code has appropriate documentation - [x] New and updated code has new and/or updated testing - [x] Required CI checks are passing - [x] Visual proof for any user facing features like CLI or documentation updates - [x] Linked issues closed with keywords --- cmd/celestia-appd/cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/celestia-appd/cmd/root.go b/cmd/celestia-appd/cmd/root.go index 8252e7ab8a..daf9041d92 100644 --- a/cmd/celestia-appd/cmd/root.go +++ b/cmd/celestia-appd/cmd/root.go @@ -109,7 +109,7 @@ func initAppConfig() (string, interface{}) { // snapshots to nodes that state sync srvCfg.StateSync.SnapshotInterval = 1500 srvCfg.StateSync.SnapshotKeepRecent = 2 - srvCfg.MinGasPrices = fmt.Sprintf("0%s", app.BondDenom) + srvCfg.MinGasPrices = fmt.Sprintf("0.001%s", app.BondDenom) CelestiaAppCfg := CustomAppConfig{Config: *srvCfg}