This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Optimize multilocation reanchoring logic in XCM #6301
Open
tonyalaribe
wants to merge
13
commits into
master
Choose a base branch
from
aa/optimize-multilocation-reanchoring
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
449fc9c
Optimize multilocation reanchoring
tonyalaribe 763a72d
remove debug comments
tonyalaribe 0d40bd5
cleanup tests for reanchoring
tonyalaribe 8cdce27
switch to while loop
tonyalaribe 1070422
remove the now unused inverted method
tonyalaribe e4d6359
workaround to prevent mutating self in the unlikely case of an overflow
tonyalaribe 92a1760
switch to checked_At, to error when there's an overflow
tonyalaribe 1706e28
Trigger CI
tonyalaribe 59b949d
Merge remote-tracking branch 'origin/master' into aa/optimize-multilo…
36db35e
Merge remote-tracking branch 'origin/master' into aa/optimize-multilo…
f7af2b2
Merge remote-tracking branch 'origin/master' into aa/optimize-multilo…
a3d4898
Merge remote-tracking branch 'origin/master' into aa/optimize-multilo…
44c0d8b
Merge remote-tracking branch 'origin/master' into aa/optimize-multilo…
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
workaround to prevent mutating self in the unlikely case of an overflow
- Loading branch information
commit e4d6359c7b872a523000572936edec4a87f21405
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
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.
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.
Oh, I see. The idea is to return an error if there's an overflow and not just saturate it to fail silently? In that case I've switched to using a
checked_add
instead ofsaturating_add
. That should give us the behaviour we want.