-
Notifications
You must be signed in to change notification settings - Fork 42
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
Consolidate transaction inputs and outputs in dedicated modules #385
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
bobbinth
force-pushed
the
bobbin-tx-io
branch
from
December 26, 2023 17:43
d84f4b5
to
0a29e02
Compare
bobbinth
force-pushed
the
bobbin-tx-io
branch
from
December 26, 2023 19:01
1687b3f
to
dc02894
Compare
igamigo
approved these changes
Dec 28, 2023
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.
Looks good to me, did not see anything of note other than very minor nits such as the TransactionResultError
enum not being alphabetically ordered after the changes.
In favor of this PR, makes everything more intuitive and clearer.
Move transaction output parsing to `miden-lib`
Refactor `ProvenTransaction` to reduce code duplication
Reorganize `miden-lib` modules
Move transaction `AdviceInput` construction logic to `miden-lib`
Replace `TransactionResult` with `ExecutedTransaction`
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.
To be merged after #384.
This PR consolidates and renames transaction input and output structs (along the lines of what is described in #350). The main changes are:
RecordedNote
renamed intoInputNote
and moved totransaction
module.ConsumedNotes
renamed intoInputNotes
and updated interfaces a little.NoteStub
renamed intoOutputNote
and moved totransaction
module.CreatedNotes
renamed intoOutputNotes
and updated interfaces a little.FinalAccountStub
struct.TransactionOutputs
struct.ExecutedTransaction
,PreparedTransaction
, andTransactionResult
to useTransactionInputs
andTransactionOutputs
structs.This does not yet complete the refactoring - I will need to complete other things mentioned in #350 and also clean up transaction objects a bit more. But since this PR is already quite big, I'll do these in a follow-up PR.