-
Notifications
You must be signed in to change notification settings - Fork 25
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(blockifier): keep revert error structure in TransactionExecutionInfo #1491
feat(blockifier): keep revert error structure in TransactionExecutionInfo #1491
Conversation
3116a9f
to
6d47be3
Compare
7c53e8f
to
ff1d548
Compare
6d47be3
to
3d14298
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.
Reviewable status: 0 of 15 files reviewed, all discussions resolved
crates/blockifier/src/transaction/objects.rs
line 166 at r1 (raw file):
Self::Execution(ErrorStack::default()) } }
required, since TransactionExecutionInfo
must implement Default
.
This won't really be used (Option default is None)
Code quote:
impl Default for RevertError {
fn default() -> Self {
Self::Execution(ErrorStack::default())
}
}
3d14298
to
f0e4d1c
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1491 +/- ##
===========================================
+ Coverage 40.10% 61.41% +21.31%
===========================================
Files 26 175 +149
Lines 1895 20349 +18454
Branches 1895 20349 +18454
===========================================
+ Hits 760 12498 +11738
- Misses 1100 6954 +5854
- Partials 35 897 +862 ☔ View full report in Codecov by Sentry. |
ff1d548
to
9631fe8
Compare
f0e4d1c
to
2d33fcc
Compare
9631fe8
to
29566cc
Compare
2d33fcc
to
5b4efa6
Compare
29566cc
to
9a188fb
Compare
5b4efa6
to
629968d
Compare
9a188fb
to
d49b575
Compare
629968d
to
c319962
Compare
d49b575
to
00aeed8
Compare
c319962
to
3d4d41d
Compare
00aeed8
to
2f5561a
Compare
3d4d41d
to
2e6a06b
Compare
2f5561a
to
602acee
Compare
a1e6ad6
to
fa4e52c
Compare
Artifacts upload triggered. View details here |
Previously, dorimedini-starkware wrote…
you could make it optional |
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.
Reviewed 2 of 15 files at r1, 1 of 11 files at r2, 1 of 9 files at r4.
Reviewable status: 3 of 15 files reviewed, 1 unresolved discussion (waiting on @dorimedini-starkware)
crates/blockifier/src/transaction/objects.rs
line 166 at r1 (raw file):
Previously, ilyalesokhin-starkware wrote…
you could make it optional
Actually, I see that it is optional, so why do you need a default?
d8e3ca5
to
afd8e6c
Compare
fa4e52c
to
f8b20df
Compare
Artifacts upload triggered. View details here |
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.
Reviewable status: 2 of 15 files reviewed, 1 unresolved discussion (waiting on @dorimedini-starkware and @ilyalesokhin-starkware)
crates/blockifier/src/transaction/objects.rs
line 166 at r1 (raw file):
Previously, ilyalesokhin-starkware wrote…
Actually, I see that it is optional, so why do you need a default?
I thought I did, I was wrong :) fixed
f8b20df
to
6ade672
Compare
Artifacts upload triggered. View details here |
afd8e6c
to
439c529
Compare
6ade672
to
2b59304
Compare
Artifacts upload triggered. View details here |
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.
Reviewed 16 of 16 files at r5, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @dorimedini-starkware)
439c529
to
c1be537
Compare
2b59304
to
d7c7920
Compare
Artifacts upload triggered. View details here |
c1be537
to
736d0dc
Compare
d7c7920
to
19cbc20
Compare
Artifacts upload triggered. View details here |
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.
Reviewed 4 of 4 files at r6, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @dorimedini-starkware)
19cbc20
to
9e44467
Compare
Artifacts upload triggered. View details here |
Artifacts upload triggered. View details here |
No description provided.