Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
harish551 committed Sep 11, 2024
1 parent 0e23fbc commit 92a08fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/globalfee/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func DefaultParams() Params {
return Params{
MinimumGasPrices: sdk.DecCoins(nil),
BypassMinFeeMsgTypes: []string{},
MaxTotalBypassMinFeeMsgGasUsage: uint64(maxTotalBypassMinFeeMsgGasUsage),
MaxTotalBypassMinFeeMsgGasUsage: maxTotalBypassMinFeeMsgGasUsage,

Check failure on line 19 in x/globalfee/types/params.go

View workflow job for this annotation

GitHub Actions / test

cannot use maxTotalBypassMinFeeMsgGasUsage (variable of type int) as uint64 value in struct literal

Check failure on line 19 in x/globalfee/types/params.go

View workflow job for this annotation

GitHub Actions / lint

cannot use maxTotalBypassMinFeeMsgGasUsage (variable of type int) as uint64 value in struct literal) (typecheck)

Check failure on line 19 in x/globalfee/types/params.go

View workflow job for this annotation

GitHub Actions / lint

cannot use maxTotalBypassMinFeeMsgGasUsage (variable of type int) as uint64 value in struct literal) (typecheck)

Check failure on line 19 in x/globalfee/types/params.go

View workflow job for this annotation

GitHub Actions / lint

cannot use maxTotalBypassMinFeeMsgGasUsage (variable of type int) as uint64 value in struct literal) (typecheck)

Check failure on line 19 in x/globalfee/types/params.go

View workflow job for this annotation

GitHub Actions / lint

cannot use maxTotalBypassMinFeeMsgGasUsage (variable of type int) as uint64 value in struct literal) (typecheck)
}
}

Expand Down

0 comments on commit 92a08fa

Please sign in to comment.