-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
R4R: Dynamic Capabilities with Routing #5888
Merged
Merged
Changes from 11 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
57aacb4
start integrating capabilities
AdityaSripal 1ed4923
switch to using port authenticate
AdityaSripal 8ef8225
fix build and address first review
AdityaSripal 06e7b80
remove capabilities from msgs and return them on channel handlers
AdityaSripal 7e01aac
implement channel callbacks and capability injection
AdityaSripal 5979b3b
route packets through ibc handler and then to module
AdityaSripal bddc7a9
start implementing transfer with new routing logic
AdityaSripal 18f7207
fix packet msg routes
AdityaSripal ff0dbef
implement routing from @cwgoes comment
AdityaSripal 8086e42
address @cwgoes comments
AdityaSripal 56a4c9c
address @fedekunze comments
AdityaSripal b282f99
start working on tests, prove GetCapability bug
AdityaSripal 287bd62
fix channel tests
AdityaSripal 4c9b105
fix port tests
AdityaSripal ca07bf7
add get owners test
AdityaSripal d7dfea1
fix conflicts
AdityaSripal 9b1aeda
update to latest master
AdityaSripal d23c401
Update x/ibc/05-port/types/module.go
AdityaSripal 7eb7c51
test capability claiming and don't panic on invalid route
AdityaSripal 056d759
Merge branch 'aditya/ibc-routing' of https://github.com/cosmos/cosmos…
AdityaSripal dca2a0b
deduplicate
AdityaSripal 0e1775b
Require sending capability to SendPacket
AdityaSripal a6cfc6a
appease linter
AdityaSripal d08a246
fix conflicts
AdityaSripal b92d5f7
fix conflicts, build, tests
AdityaSripal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back 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.
if
block ends with areturn
statement, so drop thiselse
and outdent its block (fromgolint
)