Skip to content

Commit

Permalink
fix: oracle EndBlocker must be before gov and staking (#1434)
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zaremba committed Sep 20, 2022
1 parent 6e3f3d1 commit f8863d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,9 @@ func New(
)

app.mm.SetOrderEndBlockers(
crisistypes.ModuleName, govtypes.ModuleName, stakingtypes.ModuleName,
crisistypes.ModuleName,
oracletypes.ModuleName, // must be before gov and staking
govtypes.ModuleName, stakingtypes.ModuleName,
ibchost.ModuleName, ibctransfertypes.ModuleName,
capabilitytypes.ModuleName, authtypes.ModuleName, banktypes.ModuleName, distrtypes.ModuleName,
slashingtypes.ModuleName, minttypes.ModuleName,
Expand Down

0 comments on commit f8863d9

Please sign in to comment.