-
Notifications
You must be signed in to change notification settings - Fork 35
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
feat: make TransactionResult
serializable
#704
Conversation
Can we merge this to |
Once 0xPolygonMiden/miden-base#1113 is merged, I think it is OK to merge this into |
25863d1
to
7642315
Compare
|
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.
LGTM, thanks! Left a couple of minor comments
Cargo.toml
Outdated
@@ -20,8 +20,8 @@ repository = "https://github.com/0xPolygonMiden/miden-client" | |||
[workspace.dependencies] | |||
async-trait = "0.1" | |||
miden-lib = { version = "0.7", default-features = false } | |||
miden-objects = { version = "0.7", default-features = false } | |||
miden-tx = { version = "0.7", default-features = false, features = ["async"] } | |||
miden-objects = { version = "0.7.2", default-features = false } |
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.
We can drop the patch version from this and just cargo update
miden-base dependencies
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.
also nit (for miden-tx
as well), the extra space can be dropped as well:
miden-objects = { version = "0.7.2", default-features = false } | |
miden-objects = { version = "0.7", default-features = false } |
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! Thank you!
No description provided.