-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
cleanup feature code after mainnet-beta activation #34208
cleanup feature code after mainnet-beta activation #34208
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #34208 +/- ##
=======================================
Coverage 81.8% 81.8%
=======================================
Files 819 819
Lines 220894 220835 -59
=======================================
+ Hits 180753 180770 +17
+ Misses 40141 40065 -76 |
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.
Only made a single comment, but I think we should be removing all references to this feature outside of feature_set.rs
itself.
It's active, so any branches/tests that were for it not being active, should simply be removed.
5288501
to
9d607cb
Compare
@@ -69,11 +69,8 @@ impl From<ComputeBudgetLimits> for FeeBudgetLimits { | |||
/// are retrieved and returned, | |||
pub fn process_compute_budget_instructions<'a>( | |||
instructions: impl Iterator<Item = (&'a Pubkey, &'a CompiledInstruction)>, | |||
feature_set: &FeatureSet, | |||
_feature_set: &FeatureSet, |
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.
Will remove this parameter (7f63704) in a follow up PR, keep this PR feature cleanup only
Problem
feature
G6vbf1UBok8MWb8m25ex86aoQHeKTzDKzuZADHkShqm6
add compute budget instruction for setting account data size per transaction #30366 activated everywhere.Summary of Changes
Fixes #