x/ibc: proto migration pt 1 (#6097)
* x/ibc: proto migration pt 1 * fix tests * fixes and godoc * yaml tags * rm changelog * address comments from review * fix some tests * fix tests * add _UNSPECIFIED suffix for default enums * Update app * protobuf Any fixes * use gogoproto * fix tests * wrap all messages * address @alexanderbez comments * update proto files Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com> Co-authored-by: Aleksandr Bezobchuk <aleks.bezobchuk@gmail.com> Co-authored-by: Aaron Craelius <aaron@regen.network>
This commit is contained in:
co-authored by
Alexander Bezobchuk
Aleksandr Bezobchuk
Aaron Craelius
parent
bb0a1edf8e
commit
d7ebee74e7
+4
-2
@@ -232,13 +232,15 @@ func NewSimApp(
|
||||
)
|
||||
|
||||
// Create IBC Keeper
|
||||
// TODO: remove amino codec dependency once Tendermint version is upgraded with
|
||||
// protobuf changes
|
||||
app.IBCKeeper = ibc.NewKeeper(
|
||||
app.cdc, keys[ibc.StoreKey], app.StakingKeeper, scopedIBCKeeper,
|
||||
app.cdc, appCodec, keys[ibc.StoreKey], app.StakingKeeper, scopedIBCKeeper,
|
||||
)
|
||||
|
||||
// Create Transfer Keepers
|
||||
app.TransferKeeper = transfer.NewKeeper(
|
||||
app.cdc, keys[transfer.StoreKey],
|
||||
appCodec, keys[transfer.StoreKey],
|
||||
app.IBCKeeper.ChannelKeeper, &app.IBCKeeper.PortKeeper,
|
||||
app.AccountKeeper, app.BankKeeper, scopedTransferKeeper,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user