Skip to content

Commit

Permalink
style: gofumpt everything (cosmos#15518)
Browse files Browse the repository at this point in the history
  • Loading branch information
facundomedica authored Mar 22, 2023
1 parent 6127b59 commit 7dbbd8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app.go
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,8 @@ func NewSimApp(
// NOTE: The genutils module must occur after staking so that pools are
// properly initialized with tokens from genesis accounts.
// NOTE: The genutils module must also occur after auth so that it can access the params from auth.
genesisModuleOrder := []string{authtypes.ModuleName, banktypes.ModuleName,
genesisModuleOrder := []string{
authtypes.ModuleName, banktypes.ModuleName,
distrtypes.ModuleName, stakingtypes.ModuleName, slashingtypes.ModuleName, govtypes.ModuleName,
minttypes.ModuleName, crisistypes.ModuleName, genutiltypes.ModuleName, evidencetypes.ModuleName, authz.ModuleName,
feegrant.ModuleName, nft.ModuleName, group.ModuleName, paramstypes.ModuleName, upgradetypes.ModuleName,
Expand Down
3 changes: 2 additions & 1 deletion sim_bench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package simapp

import (
"fmt"
"github.com/spf13/viper"
"os"
"testing"

"github.com/spf13/viper"

cmtproto "github.com/cometbft/cometbft/proto/tendermint/types"
flag "github.com/spf13/pflag"
"github.com/stretchr/testify/require"
Expand Down

0 comments on commit 7dbbd8b

Please sign in to comment.