-
Notifications
You must be signed in to change notification settings - Fork 946
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
New Block structure #3101
Merged
Merged
New Block structure #3101
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
bc152a7
Rename Block to Proposal
deuszx a6080da
New Block structures
deuszx facb07d
Add a newtype struct for wrapping Vec<CryptoHash>
deuszx c3ccffa
fix linera-indexer/examples test
deuszx a61b959
Fix linera-explorer tests
deuszx 5204ea3
Fix hex_game example
deuszx 1ab41d6
Fix cargo clippy
deuszx 93afb26
Cleanup
deuszx bb50374
Fix test
deuszx b2c870d
rm comments
deuszx 8d06dac
Fix graphql query in the tests
deuszx d13da68
Comments on the new types
deuszx 86f300d
block.rs cleanup
deuszx 5fe0425
Testy empty Block size.
deuszx f71b944
Check hash equality when deserializing Block
deuszx ab619da
Merge remote-tracking branch 'origin/main' into new-block-structure
deuszx 65a80f6
Address typos and renames
deuszx 19ce2d1
Fix after merge with main.
deuszx 652604e
Custom (de)serializer for BlockHeader.
deuszx 8402eb4
Update EMPTY_BLOCK_SIZE
deuszx 5cbe42e
Improve comment on the Block type a bit
deuszx 42ae6d2
RM (de)serializers for ExecutedBlock
deuszx db6db25
Derive (De)Serialize for CryptoHashVec
deuszx 0c92ed4
Comment formatting
deuszx fff9b8b
Merge remote-tracking branch 'origin/main' into new-block-structure
deuszx dd1147a
Update maximum block size in test
deuszx 89062f6
Address review comments from Andreas
deuszx 5bf891d
Merge remote-tracking branch 'origin/main' into new-block-structure
deuszx 0952a88
one more fix to expected block sizes
deuszx ac1c97f
Merge branch 'main' into new-block-structure
afck 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
RM (de)serializers for ExecutedBlock
- Loading branch information
commit 42ae6d274604f310f33f4851f90f631ebec1cce2
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
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.
Maybe
ProposalWithOutcome
. Or even inline it, if it's not used in many places anymore?