Skip to content

Commit

Permalink
style: make linters happy
Browse files Browse the repository at this point in the history
  • Loading branch information
amimart committed Jul 23, 2024
1 parent afbb710 commit d82e0c4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,12 @@ func New(
var noAuthzModule ibcporttypes.IBCModule
icaControllerStack = icacontroller.NewIBCMiddleware(noAuthzModule, app.ICAControllerKeeper)
icaControllerStack = icacontroller.NewIBCMiddleware(icaControllerStack, app.ICAControllerKeeper)
icaControllerStack = ibccallbacks.NewIBCMiddleware(icaControllerStack, app.IBCFeeKeeper, wasmStackIBCHandler, wasm.DefaultMaxIBCCallbackGas)
icaControllerStack = ibccallbacks.NewIBCMiddleware(
icaControllerStack,
app.IBCFeeKeeper,
wasmStackIBCHandler,
wasm.DefaultMaxIBCCallbackGas,
)
icaICS4Wrapper := icaControllerStack.(ibcporttypes.ICS4Wrapper)
icaControllerStack = ibcfee.NewIBCMiddleware(icaControllerStack, app.IBCFeeKeeper)

Expand Down

0 comments on commit d82e0c4

Please sign in to comment.