-
Notifications
You must be signed in to change notification settings - Fork 75
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
chore(docs): updates to data verification and inclusion proof specs #1689
Open
noot
wants to merge
3
commits into
main
Choose a base branch
from
noot/specs
base: main
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.
+122
−95
Conversation
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
github-actions
bot
added
the
documentation
Improvements or additions to documentation
label
Oct 18, 2024
Fraser999
reviewed
Nov 4, 2024
specs/data-flow-and-verification.md
Outdated
Comment on lines
18
to
21
pub struct RollupDataSubmission { | ||
rollup_id: Vec<u8>, | ||
data: Vec<u8>, | ||
} |
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.
It looks more like this now:
pub struct RollupDataSubmission {
rollup_id: RollupId,
data: Bytes,
fee_asset: asset::Denom,
}
There probably should be a short explanation of the fee_asset
field below where we already describe rollup_id
and data
?
Fraser999
approved these changes
Nov 14, 2024
github-merge-queue
bot
removed this pull request from the merge queue due to failed status checks
Nov 18, 2024
github-merge-queue bot
pushed a commit
that referenced
this pull request
Nov 18, 2024
…1689) ## Summary minor updates to the data verification and inclusion proof specs, mostly renaming/updating the types and some clarifications. ## Changes - update [specs/data-flow-and-verification.md](https://github.com/astriaorg/astria/compare/noot/specs?expand=1#diff-ec3cc86eef70a0285e3cd7fbc902eeb2ef082783cda5916b3d9b81f80e0b4917) - update [specs/sequencer-inclusion-proofs.md](https://github.com/astriaorg/astria/compare/noot/specs?expand=1#diff-0b52370ce97078002b7f4682377d6847fad36814fea97e7eab930e1edc9270ec)
github-merge-queue
bot
removed this pull request from the merge queue due to failed status checks
Nov 18, 2024
github-merge-queue
bot
removed this pull request from the merge queue due to failed status checks
Nov 18, 2024
github-merge-queue
bot
removed this pull request from the merge queue due to failed status checks
Nov 18, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
minor updates to the data verification and inclusion proof specs, mostly renaming/updating the types and some clarifications.
Changes