-
Notifications
You must be signed in to change notification settings - Fork 21
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
refactor(fee): rename ResourceBoundsMapping => DeprecatedResourceBoundsMapping #504
refactor(fee): rename ResourceBoundsMapping => DeprecatedResourceBoundsMapping #504
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @nimrod-starkware and the rest of your teammates on Graphite |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #504 +/- ##
==========================================
- Coverage 76.46% 76.46% -0.01%
==========================================
Files 349 349
Lines 36872 36874 +2
Branches 36872 36874 +2
==========================================
Hits 28195 28195
- Misses 6353 6355 +2
Partials 2324 2324 ☔ View full report in Codecov by Sentry. |
0467b89
to
1f18451
Compare
fd9e97e
to
24e0819
Compare
1f18451
to
58bda33
Compare
24e0819
to
b1beef0
Compare
58bda33
to
d6c1477
Compare
8139ddb
to
59b3b0b
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.
All this PR is doing is renaming ResourceBoundsMapping
=> DeprecatedResourceBoundsMapping
Reviewable status: 0 of 33 files reviewed, all discussions resolved (waiting on @dorimedini-starkware and @TzahiTaub)
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 33 of 33 files at r1, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @nimrod-starkware and @TzahiTaub)
crates/papyrus_test_utils/src/lib.rs
line 725 at r1 (raw file):
pub max_price_per_unit: u128, } pub struct DeprecatedResourceBoundsMapping(pub BTreeMap<Resource, ResourceBounds>);
this type is imported and defined in the same module; why?
Code quote:
pub struct DeprecatedResourceBoundsMapping(pub BTreeMap<Resource, ResourceBounds>);
d6c1477
to
4de6e17
Compare
59b3b0b
to
f902df7
Compare
4de6e17
to
b64b716
Compare
f902df7
to
06f10d5
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: 32 of 35 files reviewed, 1 unresolved discussion (waiting on @dorimedini-starkware and @TzahiTaub)
crates/papyrus_test_utils/src/lib.rs
line 725 at r1 (raw file):
Previously, dorimedini-starkware wrote…
this type is imported and defined in the same module; why?
It's under a weird macro that generates some trait implementations, all the types here were declared before
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 3 of 3 files at r2, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @TzahiTaub)
b64b716
to
d9382db
Compare
06f10d5
to
420e3a1
Compare
d9382db
to
a8a48f5
Compare
420e3a1
to
b6332ce
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.
Reviewed 7 of 7 files at r3, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @TzahiTaub)
a8a48f5
to
d3d02ab
Compare
b6332ce
to
91adc91
Compare
d3d02ab
to
3b7454f
Compare
91adc91
to
ca7e160
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.
Reviewed 2 of 2 files at r4, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @TzahiTaub)
3b7454f
to
2f91ef5
Compare
ca7e160
to
63148b5
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.
Reviewed 3 of 3 files at r5, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @TzahiTaub)
2f91ef5
to
ac66153
Compare
63148b5
to
95a4d6e
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.
Reviewed 2 of 2 files at r6, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @TzahiTaub)
ac66153
to
df36dc5
Compare
95a4d6e
to
a02fbc9
Compare
Merge activity
|
a02fbc9
to
f607fcc
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: complete! all files reviewed, all discussions resolved (waiting on @TzahiTaub)
This change is