-
Notifications
You must be signed in to change notification settings - Fork 625
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: split out packet handling rpcs #7007
Conversation
_ clienttypes.MsgServer = (*Keeper)(nil) | ||
_ connectiontypes.MsgServer = (*Keeper)(nil) | ||
_ channeltypes.MsgServer = (*Keeper)(nil) | ||
_ channeltypes.PacketMsgServer = (*Keeper)(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.
can also move to a packet_msg_server.go
if people wanted. didn't since wanted to leave folder organization/shuffling for later
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 like to see this split out eventually and moved to packet-server. But can be done in future 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.
could do with better names here
|
||
// BuildMerklePath takes the merkle path prefix and an ICS24 path | ||
// and builds a new path by appending the ICS24 path to the last element of the merkle path prefix. | ||
func BuildMerklePath(prefix *commitmenttypesv2.MerklePath, path []byte) commitmenttypesv2.MerklePath { |
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.
def will add tests, just want to get keeper in branch so we can start working on packet handlers.
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.
Looks good. Can do suggestion in future PR
_ clienttypes.MsgServer = (*Keeper)(nil) | ||
_ connectiontypes.MsgServer = (*Keeper)(nil) | ||
_ channeltypes.MsgServer = (*Keeper)(nil) | ||
_ channeltypes.PacketMsgServer = (*Keeper)(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 like to see this split out eventually and moved to packet-server. But can be done in future PR
Quality Gate failed for 'ibc-go'Failed conditions |
Description
split taken from ibc-lite branch, further splitting and shuffling of server impls planned as follow up.
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.