File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ func NewMinitiaApp(
299
299
app .CapabilityKeeper .Seal ()
300
300
301
301
// add keepers
302
- wasmKeeper : = & wasmkeeper.Keeper {}
302
+ app . WasmKeeper = & wasmkeeper.Keeper {}
303
303
304
304
accountKeeper := authkeeper .NewAccountKeeper (
305
305
appCodec ,
@@ -434,7 +434,7 @@ func NewMinitiaApp(
434
434
transferIBCModule ,
435
435
// ics4wrapper: transfer -> move -> fee
436
436
feeMiddleware ,
437
- wasmKeeper ,
437
+ app . WasmKeeper ,
438
438
)
439
439
440
440
// create ibcfee middleware for transfer
@@ -522,7 +522,7 @@ func NewMinitiaApp(
522
522
523
523
// The last arguments can contain custom message handlers, and custom query handlers,
524
524
// if we want to allow any custom callbacks
525
- * wasmKeeper = wasmkeeper .NewKeeper (
525
+ * app . WasmKeeper = wasmkeeper .NewKeeper (
526
526
appCodec ,
527
527
runtime .NewKVStoreService (keys [wasmtypes .StoreKey ]),
528
528
app .AccountKeeper ,
@@ -543,7 +543,6 @@ func NewMinitiaApp(
543
543
authorityAddr ,
544
544
wasmOpts ... ,
545
545
)
546
- app .WasmKeeper = wasmKeeper
547
546
548
547
// x/auction module keeper initialization
549
548
You can’t perform that action at this time.
0 commit comments