diff --git a/simapp/app.go b/simapp/app.go index aea21e2830ae..075fdb8860bf 100644 --- a/simapp/app.go +++ b/simapp/app.go @@ -1,4 +1,6 @@ -//go:build app_v1 +//go:build !app_v1 + +// TODO: (revert) added for testing package simapp @@ -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, }, diff --git a/simapp/app_v2.go b/simapp/app_v2.go index e10a54e7449e..86f7871f5ca0 100644 --- a/simapp/app_v2.go +++ b/simapp/app_v2.go @@ -1,4 +1,6 @@ -//go:build !app_v1 +//go:build app_v1 + +// TODO: (revert) add for testing package simapp @@ -89,6 +91,7 @@ type SimApp struct { } func init() { + userHomeDir, err := os.UserHomeDir() if err != nil { panic(err)