-
Notifications
You must be signed in to change notification settings - Fork 149
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
♻️ Disallow creation of new Transaction
s with a non-empty UpdatedAddresses
#3480
♻️ Disallow creation of new Transaction
s with a non-empty UpdatedAddresses
#3480
Conversation
0e72cb3
to
7c248d2
Compare
Transaction
s with a non-empty UpdatedAddresses
Could we talk about this deprecated schedule and update way? Can you make a discussion document about this? I'm sure just disallowing the |
2850e75
to
798ce5a
Compare
@riemannulus As mentioned above, this does not block |
798ce5a
to
7fd7327
Compare
This PR has Quantification details
Why proper sizing of changes matters
Optimal pull request sizes drive a better predictable PR flow as they strike a
What can I do to optimize my changes
How to interpret the change counts in git diff output
Was this comment helpful? 👍 :ok_hand: :thumbsdown: (Email) |
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## 3.8-maintenance #3480 +/- ##
===================================================
+ Coverage 79.14% 79.17% +0.02%
===================================================
Files 342 342
Lines 11822 11830 +8
===================================================
+ Hits 9357 9366 +9
+ Misses 2465 2464 -1
|
2129953
into
planetarium:3.8-maintenance
This partially deprecates uses of
Transaction.UpdatedAddresses
property. It is no longer allowed to create aTransaction
with non-emptyUpdatedAddresses
property through normal means.As it is still possible to create a
Transaction
with a non-emptyUpdatedAddresses
(in particular, when unmarshalling a marshalledTransaction
) mostTransaction
s used in tests are left intact (especially those using fixtures) to keep the old behavior intact.