-
Notifications
You must be signed in to change notification settings - Fork 11.3k
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
[core] Use Envelope for TransactionEffects #5967
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
07b0d89
to
a59eb28
Compare
e16df73
to
071a963
Compare
071a963
to
e197590
Compare
ping :) |
e197590
to
032ba63
Compare
@@ -1741,7 +1743,7 @@ where | |||
?tx_digest, | |||
name=?name.concise(), | |||
expected_epoch=?self.committee.epoch, | |||
returned_epoch=?inner_signed.auth_sig().epoch, | |||
returned_epoch=?inner_signed.epoch(), |
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.
whats the difference btw the epoch in auth sig vs the epoch?
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.
It's the same thing. Just a shortcut function.
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!
Consolidate effects envelope data structure. Main changes are in messages.rs. Rest are just refactorings.