From 13f77de949ce84704db1c7307d31ba8c6e16842e Mon Sep 17 00:00:00 2001 From: Sean King Date: Wed, 26 Jan 2022 14:52:10 +0100 Subject: [PATCH] fix: app.go (#789) --- testing/simapp/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/simapp/app.go b/testing/simapp/app.go index 5fbda3bb931..0743bea6bcd 100644 --- a/testing/simapp/app.go +++ b/testing/simapp/app.go @@ -368,7 +368,7 @@ func NewSimApp( // NOTE: the IBC mock keeper and application module is used only for testing core IBC. Do // note replicate if you do not need to test core IBC or light clients. // Pass IBCFeeKeeper for PortKeeper since fee middleware will wrap the IBCKeeper for underlying application. - mockModule := ibcmock.NewAppModule(scopedIBCMockKeeper, &app.IBCFeeKeeper) + mockModule := ibcmock.NewAppModule(scopedIBCMockKeeper, &app.IBCKeeper.PortKeeper) // create fee wrapped mock module feeMockModule := ibcfee.NewIBCModule(app.IBCFeeKeeper, ibcmock.NewIBCModule(nil, scopedFeeMockKeeper))