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.
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
Delegated Opt In Review #1
base: review
Are you sure you want to change the base?
Delegated Opt In Review #1
Changes from 1 commit
fa5b4e0
ce6d6b7
ee9ab06
80cd20e
6f4f322
76ca460
d4b111a
978b12f
0dadbfe
9169a14
962de7a
76e7d34
f45b476
3bb98bd
c5c2d95
b69d790
89e1515
7a559c5
c5d7203
4701fd7
75ceab2
56c7aa0
5eb33dd
bf072e6
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
By aware, though I don't think it matters, that
global LatestTimestamp
is for the last block.So if the last block was at 9998, and the end time is 10000, but the next block gets added at 10002, then you can have an opt-in the occurs after the set endtime.
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.
Yeah that's why I specified the usage of
global LatestTimestamp
. The two options are eitherRound
orLatestTimestamp
. I feel like the timestamp approach allows for a better UX even though there may be some slight deviations in the true end time/block.