Skip to content

Commit

Permalink
fix: default min gas balance should be bigger than gas fees (#18)
Browse files Browse the repository at this point in the history
* fix: default min gas balance should be bigger than gas fees

* fix: default gas fee should be low
  • Loading branch information
artemijspavlovs authored Jun 17, 2024
1 parent 18b4379 commit 7654f18
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ import (
"time"

"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/dymensionxyz/cosmosclient/cosmosclient"
"github.com/ignite/cli/ignite/pkg/cosmosaccount"
"github.com/mitchellh/go-homedir"
"github.com/spf13/viper"

"github.com/dymensionxyz/cosmosclient/cosmosclient"
)

type Config struct {
Expand Down Expand Up @@ -69,8 +68,8 @@ const (
defaultLogLevel = "info"
defaultGasLimit = 300000
defaultHubDenom = "adym"
defaultGasFees = "100000000000000000" + defaultHubDenom
defaultMinimumGasBalance = "40000000000" + defaultHubDenom
defaultGasFees = "3000000000000000" + defaultHubDenom
defaultMinimumGasBalance = "1000000000000000000" + defaultHubDenom
testKeyringBackend = "test"

botNamePrefix = "bot-"
Expand Down

0 comments on commit 7654f18

Please sign in to comment.