-
Notifications
You must be signed in to change notification settings - Fork 78
refactor: Change way of providing code and inputs to executor #1229
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
Merged
Merged
Changes from 25 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
8c59e66
refactor: Change way of providing code and inputs to executor
igamigo 0a576c0
test: Fix 3 tests
igamigo f0888df
chore: Merge next
igamigo 4052596
chore: Merge next
igamigo 017d8fd
Checkpoint
igamigo 7df20d7
feat: Add ForeignTransactionInputs
igamigo 1edbfe7
chore: Merge next
igamigo 0ac3111
chore: Remove TODO
igamigo d88556f
chore: CHANGELOG
igamigo 327fc3f
reviews: Address comment
igamigo 4040442
Revert change
igamigo fc60697
refactor: Remove unused DataStore error variant
igamigo a34b940
chore: Clippy
igamigo 2f7e499
refactor: TransactionArgs mutators
igamigo 20c9d25
chore: Clippy
igamigo 32a5296
refactor: MAST store
igamigo 5965b5c
refactor: FPI inputs
igamigo 0a680cf
reviews: propagate errors, add validations and tests
igamigo 75e1fdc
test: Fix assembles
igamigo 96c28ef
reviews: Move mast_store.rs
igamigo eee32d8
Merge branch 'next' into igamigo-refactor-executor
igamigo 853ca80
fix: Remove accidentall std addition
igamigo 26ae3a5
chore: Merge
igamigo 124d03f
chore: Lints
igamigo e7a88e2
test: Fix doc test build
igamigo beb71f1
reviews: Change name, add execute_code variant and make function private
igamigo b4b2e1c
reviews: Box string in error
igamigo cd15d1f
reviews: Typo
igamigo 9e3b4e9
chore: Merge next
igamigo 635cf7f
chore: Merge conflicts
igamigo 7b959d1
tests: refactor test to work around the new validations
igamigo bf97884
feat: Add is_valid()
igamigo f352972
chore: Clippy
igamigo 5757967
style: CHANGELOG extra newline
igamigo 6503c8b
chore: Renames and imports
igamigo 65ea187
reviews: Remove unnecessary (crate) and add note
igamigo 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
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.
Nit: We could box the string to save 8 bytes. This is the largest variant in the enum now and dictates its stack size. Just requires adding an
.into()
after theformat!
where it is used.