-
Notifications
You must be signed in to change notification settings - Fork 123
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
feature: New Executable model (and other misc markups) #1885
Merged
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
Docker tags |
Benchmark for 23d7658Click to view benchmark
|
dhedey
force-pushed
the
feature/versioned-executable
branch
from
August 22, 2024 03:08
ef10e20
to
0c51979
Compare
dhedey
changed the title
feature: Introduce versioned TransactionExecutable
feature: New Executable model (and other misc markups)
Aug 23, 2024
talekhinezh
approved these changes
Aug 27, 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.
Honestly, with a big review backlog, I've given up with making my PRs coherent / separate. This is a bit of a mish-mash, of tweaks and improvements.
Details
Headlines include:
Executable
andIntentDetails
traits, and preparing for a world of separation ofTransaction
fromIntent
.Executable
toExecutableTransactionV1
and making it a primary implementer ofExecutable
E: Executable
- this was gnarly and it turns out it wasn't needed. Instead, System stores actions it needs to perform on finalization. If we want to add it back, I propose storing it as aBox<dyn Executable>
which will be nicer to work with.LocalTransactionReceiptV1
model from the node, to catch model divergence sooner... and then improved the usability of theSborAssertion
macros to be less fragile, and much easier to kick off:Testing
Mostly refactors - existing tests apply.
Need to add tests for tips and things - I assume these will come in due course when we add concrete implementations of the new transaction model and can test assertions against it.