-
Notifications
You must be signed in to change notification settings - Fork 90
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
Add a new mode 2
to the LDC that allows to use the memory as a source for code
#849
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
de86a1a
allow ldc in predicates, still need to deal with storage and checked txs
Voxelot 4225346
checkpoint, plumbing storage and refactoring generics
Voxelot b4c4da3
plumbing of generics happy, now onto all the tests
Voxelot b0d0302
fix serde error in fuel-crypto
Voxelot 340f401
expose predicate storage module
Voxelot 2da51b1
avoid supertrait
Voxelot 3073daa
removing clone constraint, trying to reason through the async issues
Voxelot 74e7c3f
removed clone, made async happy
Voxelot 0b987e2
more alloc!
Voxelot bba89e4
disable alloc but keep serde in fuel-crypto
Voxelot e715fb1
Revert "disable alloc but keep serde in fuel-crypto"
Voxelot 090636c
battle of the feature flags
Voxelot 39eb13e
enable BSIZ and BLDD
Voxelot 156f2a8
Fixed compilation for tests.
xgreenx 4c43718
Removed `StorageUnavailable`
xgreenx d62ee4d
Updated CHANGELOG.md
xgreenx 6acc4ca
Add a new mode `2` to the LDC that allows to use the memory as a sour…
xgreenx ce1603a
Added more tests for mode 2
xgreenx a564f3f
Update fuel-asm/src/lib.rs
xgreenx 2a32a64
Updated CHANGELOG.md
xgreenx 5bbf301
Merge remote-tracking branch 'origin/feature/ldc-mode-2' into feature…
xgreenx 1b01a9d
Added tests that contract LDC is not allowed
xgreenx 4289674
Merge branch 'refs/heads/feature/predicate-ldc' into feature/ldc-mode-2
xgreenx 24e5b21
Merge branch 'refs/heads/master' into feature/ldc-mode-2
xgreenx d1c6283
Return back removed CHANGELOG.md
xgreenx 4e2d0df
Fix the comment
xgreenx 65c78d3
Apply comments
xgreenx 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
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.
Is all the following validation logic new?
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.
I moved the logic from
self.read(src, len)
andself.write_noownerchecks(dst, len)?
here to avoidto_vec
fortmp
slice