Skip to content

Commit

Permalink
chore: change the default minimum gas fee to something non-zero (cele…
Browse files Browse the repository at this point in the history
…stiaorg#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
  • Loading branch information
evan-forbes authored and rach-id committed Nov 16, 2022
1 parent 51c0345 commit ebed835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/celestia-appd/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down

0 comments on commit ebed835

Please sign in to comment.