Skip to content

Commit

Permalink
add todos
Browse files Browse the repository at this point in the history
  • Loading branch information
atheeshp committed Jul 26, 2024
1 parent 7a4da4c commit ffa9b81
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion simapp/app.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//go:build app_v1
//go:build !app_v1

// TODO: (revert) added for testing

package simapp

Expand Down Expand Up @@ -572,6 +574,7 @@ func (app *SimApp) setAnteHandler(txConfig client.TxConfig) {
SignModeHandler: txConfig.SignModeHandler(),
FeegrantKeeper: app.FeeGrantKeeper,
SigGasConsumer: ante.DefaultSigVerificationGasConsumer,
GovKeeper: app.GovKeeper,
},
&app.CircuitKeeper,
},
Expand Down
5 changes: 4 additions & 1 deletion simapp/app_v2.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//go:build !app_v1
//go:build app_v1

// TODO: (revert) add for testing

package simapp

Expand Down Expand Up @@ -89,6 +91,7 @@ type SimApp struct {
}

func init() {

userHomeDir, err := os.UserHomeDir()
if err != nil {
panic(err)
Expand Down

0 comments on commit ffa9b81

Please sign in to comment.