From 27a722c85534c887d2c5969d89d9f4e58c44b66e Mon Sep 17 00:00:00 2001 From: MiniFrenchBread <103425574+MiniFrenchBread@users.noreply.github.com> Date: Sat, 10 Aug 2024 09:48:19 +0800 Subject: [PATCH] fix: add dasigners back --- app/app.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/app.go b/app/app.go index b2337526..10545dec 100644 --- a/app/app.go +++ b/app/app.go @@ -670,6 +670,7 @@ func NewApp( // nil InflationCalculationFn, use SDK's default inflation function mint.NewAppModule(appCodec, app.mintKeeper, app.accountKeeper, nil, mintSubspace), ibcwasm.NewAppModule(app.ibcWasmClientKeeper), + dasigners.NewAppModule(app.dasignersKeeper, *app.stakingKeeper), ) // Warning: Some begin blockers must run before others. Ensure the dependencies are understood before modifying this list. @@ -714,6 +715,7 @@ func NewApp( consensusparamtypes.ModuleName, packetforwardtypes.ModuleName, ibcwasmtypes.ModuleName, + dasignerstypes.ModuleName, ) // Warning: Some end blockers must run before others. Ensure the dependencies are understood before modifying this list. @@ -748,6 +750,7 @@ func NewApp( consensusparamtypes.ModuleName, packetforwardtypes.ModuleName, ibcwasmtypes.ModuleName, + dasignerstypes.ModuleName, ) // Warning: Some init genesis methods must run before others. Ensure the dependencies are understood before modifying this list @@ -781,6 +784,7 @@ func NewApp( packetforwardtypes.ModuleName, crisistypes.ModuleName, // runs the invariants at genesis, should run after other modules ibcwasmtypes.ModuleName, + dasignerstypes.ModuleName, ) app.mm.RegisterInvariants(&app.crisisKeeper)