-
Notifications
You must be signed in to change notification settings - Fork 766
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
filter backing votes for disputes concluded in the past #4690
Open
ordian
wants to merge
37
commits into
master
Choose a base branch
from
ao-fix-backing-filtering-on-disputes
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.
+362
−118
Open
Changes from 27 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
a5d3051
cosmetics
ordian b1c0830
commit a crime
ordian edf6ebf
make it fail in the right way
ordian 5899108
revert debug logs
ordian c66c4f4
fix the test again
ordian 1296110
cleanup
ordian e91b425
Merge branch 'master' into ao-fix-backing-filtering-on-disputes
ordian f46c384
finally make it fail the right way
ordian cc8e9ef
fix the issue to make the test pass
ordian cd583f7
clean up a bit
ordian 6df781e
Merge branch 'master' into ao-fix-backing-filtering-on-disputes
ordian cfbb524
remove the commented out code for now
ordian 1c818e1
restore previous comment
ordian dd79e6f
remove disputes check on inclusion (not possible)
ordian eab058f
fixup the comment
ordian 56c65e7
clean up some more
ordian 67b09a1
prdoc
ordian c82c4ba
more cleanup
ordian dd04483
fix clippy in tests
ordian f5d78ff
update prdoc
ordian a22beac
no test - no problem
ordian dff960c
merge master and resolve conflicts
ordian 78fb32d
Merge branch 'master' into ao-fix-backing-filtering-on-disputes
ordian 296d44a
fmt
ordian f75dcd7
Merge branch 'master' into ao-fix-backing-filtering-on-disputes
ordian 53d25cc
Apply suggestions from code review
ordian 00f1ffd
Merge branch 'master' into ao-fix-backing-filtering-on-disputes
ordian 683d0ea
compute concluded invalid lazily
ordian 55f5782
Merge branch 'master' into ao-fix-backing-filtering-on-disputes
ordian 2b9eef6
fix tests
ordian 8369fe9
fmt
ordian 025d266
Merge branch 'ao-fix-backing-filtering-on-disputes' of github.com:par…
ordian e946580
fix the test
ordian 6563fe2
Merge branch 'master' into ao-fix-backing-filtering-on-disputes
ordian 26dcc0c
Merge branch 'master' into ao-fix-backing-filtering-on-disputes
ordian b83f01b
address review comments
ordian cf300a9
Merge branch 'master' into ao-fix-backing-filtering-on-disputes
ordian 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
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.
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.
Why did we do this initially if we are already doing it before in
process_checked_multi_dispute_data
?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.
As opposed to
process_checked_multi_dispute_data
, here we used to check for all past concluding disputes, not just the ones that concluded in this block. And we needed to do this exactly because of possibility of re-including a candidate disputed in the past.