-
Notifications
You must be signed in to change notification settings - Fork 354
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
Remove height information from IbcEvent
#2542
Merged
Merged
Changes from 30 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
d8342ae
Introduce IbcEventWithHeight
plafer 64fc4c2
Remove IbcEvent height() and set_height()
plafer 2c01045
before AbciEvent -> Attributes refactor
plafer 2e85d49
stop using try_from_tx in favor of IbcEvent::try_from
plafer d7348b3
Client TryFrom AbciEvent done
plafer de5cc19
TryFrom AbciEvent for connection
plafer 753e8e6
AbciEvent -> IbcEvent scaffolding done
plafer f0a770c
Client Abci conversion done
plafer 1eb93d2
connection abci -> IbcEvent done
plafer 9bb944b
channel abci conversion done
plafer 28c3162
Before TxSyncResult use IbcEventWithHeight
plafer ea5d134
Remove client height
plafer 24d7fc2
Remove height from connection
plafer 7b49fdc
channel heights removed
plafer cdb5e51
Move tests to modules
plafer bb1335e
move connection tests to modules
plafer 900721b
move channel tests to modules
plafer d1449bf
fix bug
plafer 0006402
Merge remote-tracking branch 'origin/master' into plafer/2539-remove-…
plafer b103150
changelog
plafer 95ff193
Update .changelog/unreleased/improvements/2542-remove-ibcevent-height
plafer a60e524
fix potential regression
plafer ab9c8d2
Remove `event()` from IbcEventWithHeight
plafer 083c2ad
Remove `height()` from IbcEventWithHeight
plafer 714b03c
Fix PrettyEvents
plafer 377b60b
fix regression - try 2
plafer 08d2373
cargo doc fix
plafer 785cbad
move AbciEvent -> IbcEvent to relayer
plafer 1bdf27f
Move abci_event -> ibc_event logic to relayer #2
plafer 12484d9
Fix get_all_events()
plafer 5a68865
Merge remote-tracking branch 'origin/master' into plafer/2539-remove-…
plafer a68d91c
fix e2e tests
plafer 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- Remove height attribute from `IbcEvent` and its variants ([#2542](https://github.com/informalsystems/ibc-rs/issues/2542)) |
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
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.
Nice!