Skip to content

Commit

Permalink
fix: ingore register channel error (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgao001 authored May 28, 2024
1 parent 303da15 commit d1d174b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ func (app *App) registerErdosUpgradeHandler() {
executorApp := storagemodulekeeper.NewExecutorApp(app.StorageKeeper, storagemodulekeeper.NewMsgServerImpl(app.StorageKeeper), paymentmodulekeeper.NewMsgServerImpl(app.PaymentKeeper))
err := app.CrossChainKeeper.RegisterChannel(storagemoduletypes.ExecutorChannel, storagemoduletypes.ExecutorChannelId, executorApp)
if err != nil {
panic(err)
app.Logger().Error("register channel error ", err.Error())
}
return nil
})
Expand Down

0 comments on commit d1d174b

Please sign in to comment.