-
Notifications
You must be signed in to change notification settings - Fork 443
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
chore: update ibc-go v10 to rc.3 #2139
chore: update ibc-go v10 to rc.3 #2139
Conversation
* Update setup_wasmd.sh * Update setup_wasmd.sh
Signed-off-by: costcould <[email protected]>
…Wasm#2133) * Update broken link README.md * Update broktn link INTEGRATION.md
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## feat/ibc_eureka #2139 +/- ##
===================================================
- Coverage 46.10% 45.97% -0.14%
===================================================
Files 78 78
Lines 10731 10685 -46
===================================================
- Hits 4948 4912 -36
+ Misses 5340 5335 -5
+ Partials 443 438 -5
|
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.
Two first thoughts, incomplete review
@@ -567,7 +557,7 @@ func NewWasmApp( | |||
appCodec, | |||
runtime.NewKVStoreService(keys[icahosttypes.StoreKey]), | |||
app.GetSubspace(icahosttypes.SubModuleName), | |||
app.IBCFeeKeeper, // use ics29 fee as ics4Wrapper in middleware stack | |||
app.IBCKeeper.ChannelKeeper, | |||
app.IBCKeeper.ChannelKeeper, |
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.
This app.IBCKeeper.ChannelKeeper, app.IBCKeeper.ChannelKeeper,
looks fishy
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.
It is correct here though, as there is no stack (porttypes.ICS4Wrapper), so we can just use the channelkeeper as the stack.
}, | ||
PacketFee: ibcfeetypes.NewPacketFee(fee, sender.String(), msg.PayPacketFeeAsync.Relayers), | ||
} | ||
return []sdk.Msg{msg}, nil |
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 would suggest keeping the cases here and add more specific error messages than the fallback
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.
Good point. Added that and tests for it too.
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've had to change the branch base from main
to feat/ibc_eureka
- some extra commits from main are included now that shouldn't be the part of this PR. Other than that looks good to me. Thank you!
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.
Nice work! LGTM 👍
FYI: I just updated to the latest RC, in which there were a couple of minor changes. The "biggest" is probably callbacks getting embedded into ibc-go, so it's not a separate module in go.mod. Take a look and let me know. |
LGTM 👍 |
No description provided.