Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
trungnt1811 committed Jun 8, 2024
1 parent 9c0db8d commit 982b6a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -1032,9 +1032,9 @@ func (app *UmeeApp) ModuleAccountAddrs() map[string]bool {
modAccAddrs := make(map[string]bool)
for acc := range maccPerms {
// Skip the feeabstypes.ModuleName to allow the feeabs module to receive tokens
if acc == feeabstypes.ModuleName {
continue
}
if acc == feeabstypes.ModuleName {
continue
}
modAccAddrs[authtypes.NewModuleAddress(acc).String()] = true
}

Expand Down

0 comments on commit 982b6a8

Please sign in to comment.