Skip to content

Commit

Permalink
chore(app): default fee for merkledrop and fantoken is 1_000_000_000u…
Browse files Browse the repository at this point in the history
…btsg
  • Loading branch information
angelorc committed Jul 1, 2022
1 parent 820b9d9 commit f92cb0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x/fantoken/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func ParamKeyTable() paramtypes.KeyTable {
// DefaultParams return the default params
func DefaultParams() Params {
return Params{
IssueFee: sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(1000000)),
IssueFee: sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(1_000_000_000)),
MintFee: sdk.NewCoin(sdk.DefaultBondDenom, sdk.ZeroInt()),
BurnFee: sdk.NewCoin(sdk.DefaultBondDenom, sdk.ZeroInt()),
}
Expand Down
4 changes: 2 additions & 2 deletions x/merkledrop/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"gopkg.in/yaml.v2"
)

// var _ paramtypes.ParamSet = (*Params)(nil)
var _ paramtypes.ParamSet = (*Params)(nil)

var (
KeyCreationFee = []byte("CreationFee")
Expand All @@ -34,7 +34,7 @@ func ParamKeyTable() paramtypes.KeyTable {
// DefaultParams return the default params
func DefaultParams() Params {
return Params{
CreationFee: sdk.NewInt64Coin(sdk.DefaultBondDenom, 100_000_000),
CreationFee: sdk.NewInt64Coin(sdk.DefaultBondDenom, 1_000_000_000),
}
}

Expand Down

0 comments on commit f92cb0e

Please sign in to comment.