-
Notifications
You must be signed in to change notification settings - Fork 605
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: update transfer to use runtime.Environment #7615
base: marko/gomod_change
Are you sure you want to change the base?
Conversation
@@ -459,7 +459,9 @@ func NewSimApp( | |||
// since fee middleware will wrap the IBCKeeper for underlying application. | |||
// NOTE: the Transfer Keeper's ICS4Wrapper can later be replaced. | |||
app.TransferKeeper = ibctransferkeeper.NewKeeper( | |||
appCodec, runtime.NewKVStoreService(keys[ibctransfertypes.StoreKey]), app.GetSubspace(ibctransfertypes.ModuleName), | |||
appCodec, | |||
runtime.NewEnvironment(runtime.NewKVStoreService(keys[ibctransfertypes.StoreKey]), logger.With(log.ModuleKey, "x/transfer")), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here, and elsewhere, not sure if x/transfer
is right. Just followed what happened in other PRs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think "x/ibc-transfer" should be good
@damiannolan this is ready for review. I think the only failing E2Es are the same failing on the base PR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trusting CI 🙏 Thanks very much @bznein!
Co-authored-by: DimitrisJim <[email protected]>
Quality Gate passed for 'ibc-go'Issues Measures |
@damiannolan I guess you can take over this one? |
Description
Opened to trigger e2e
closes: #XXXX
Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.
docs/
).godoc
comments.Files changed
in the GitHub PR explorer.SonarCloud Report
in the comment section below once CI passes.