From 8b4ac24440f4eae22cb504f06070c6be1d33f6c8 Mon Sep 17 00:00:00 2001 From: Kevin Pita Date: Mon, 4 May 2026 13:19:18 +0200 Subject: [PATCH] fix: pass transfer params subspace to TransferKeeper --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index c8f731a..db38478 100644 --- a/app/app.go +++ b/app/app.go @@ -520,7 +520,7 @@ func New( app.TransferKeeper = transferkeeper.NewKeeper( appCodec, runtime.NewKVStoreService(keys[ibctransfertypes.StoreKey]), - nil, + app.GetSubspace(ibctransfertypes.ModuleName), app.IBCKeeper.ChannelKeeper, app.IBCKeeper.ChannelKeeper, app.MsgServiceRouter(),