Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
trinitys7 committed Oct 18, 2024
1 parent 02e5c13 commit dde0bab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/bridge/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import (
// NewParams returns Params instance with the given values.
func NewParams(authority string, ratelimitDuration time.Duration) Params {

Check warning on line 10 in x/bridge/types/params.go

View workflow job for this annotation

GitHub Actions / lint

unused-parameter: parameter 'ratelimitDuration' seems to be unused, consider removing or renaming it as _ (revive)
return Params{
Authority: authority,
Authority: authority,
}
}

// default minting module parameters
func DefaultParams() Params {
return Params{
Authority: "",
Authority: "",
}
}

Expand Down

0 comments on commit dde0bab

Please sign in to comment.