-
Notifications
You must be signed in to change notification settings - Fork 585
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: remove simd from callbacks module #7506
base: main
Are you sure you want to change the base?
Conversation
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.
basically never used
@@ -7,17 +7,10 @@ replace github.com/cosmos/ibc-go/v9 => ../../../ | |||
replace github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 | |||
|
|||
require ( | |||
cosmossdk.io/api v0.7.6 |
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.
9 deps just for binary building 😄
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.
💣
Quality Gate passed for 'ibc-go'Issues Measures |
Description
I thought about moving callbacks to top level simapp, but currently the simd built for it uses a
MockContractKeeper
. Introducing it in the top level simapp would either need to rely on this (that seems pointless or x/wasmd which seems problematic)Given that there are no custom e2e's for callbacks. I propose we remove all this auxiliary code until it's needed (and in such case can be added to the top level simapp)
ref: #7231
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.