-
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
refactor: change try from casm contract class to be by ref to avoid clones #604
refactor: change try from casm contract class to be by ref to avoid clones #604
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @ArniStarkware and the rest of your teammates on Graphite |
081e3a9
to
290a38c
Compare
4955cde
to
f533d4e
Compare
290a38c
to
c1b419f
Compare
f533d4e
to
4b3ff61
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #604 +/- ##
==========================================
+ Coverage 74.18% 74.23% +0.05%
==========================================
Files 359 359
Lines 36240 36234 -6
Branches 36240 36234 -6
==========================================
+ Hits 26884 26900 +16
+ Misses 7220 7203 -17
+ Partials 2136 2131 -5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
c1b419f
to
55f42fd
Compare
4b3ff61
to
cb68be0
Compare
55f42fd
to
bc3e260
Compare
cb68be0
to
812f027
Compare
bc3e260
to
64de94c
Compare
812f027
to
be6d00b
Compare
64de94c
to
ac61120
Compare
be6d00b
to
e1bfb64
Compare
ac61120
to
eaf97ab
Compare
e1bfb64
to
f107907
Compare
eaf97ab
to
d7ba348
Compare
f107907
to
bcefa05
Compare
d7ba348
to
c11dd88
Compare
bcefa05
to
9306405
Compare
c11dd88
to
5f0331e
Compare
9306405
to
82db51b
Compare
5f0331e
to
f39173d
Compare
82db51b
to
bb54e99
Compare
f39173d
to
a3374e7
Compare
bb54e99
to
74126b2
Compare
a3374e7
to
c819722
Compare
18d0df2
to
bf63d6e
Compare
b4e640f
to
1a4a07f
Compare
1a4a07f
to
811ebb9
Compare
bf63d6e
to
22f76d8
Compare
811ebb9
to
f159d01
Compare
22f76d8
to
8b61365
Compare
f159d01
to
1cd81f0
Compare
8b61365
to
e804a29
Compare
1cd81f0
to
728fd16
Compare
e804a29
to
5138e68
Compare
728fd16
to
c4e9a61
Compare
5138e68
to
61444df
Compare
c4e9a61
to
ae9880e
Compare
61444df
to
5abf220
Compare
ae9880e
to
c7f9b7a
Compare
5abf220
to
17952e5
Compare
17952e5
to
07f610f
Compare
This is the goal of this PR. Code quote: // TODO(Arni): create a try_from for &ExecutableTransaction.
executable_tx.clone(),
) |
Previously, ArniStarkware (Arnon Hod) wrote…
For declare transaction, this clone might be pretty expensive (The clone might hurt for other transaction types - but it is justifiable in those cases). |
07f610f
to
ced42c2
Compare
Already merged. |
This change is