Skip to content

Commit

Permalink
fix bug with rebase - compute_budget_limits
Browse files Browse the repository at this point in the history
  • Loading branch information
apfitzge committed Dec 5, 2024
1 parent 2ca3171 commit a14b451
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,9 @@ impl TransactionViewReceiveAndBuffer {
return Err(());
}

let Ok(compute_budget_limits) = view.compute_budget_limits(&working_bank.feature_set)
let Ok(compute_budget_limits) = view
.compute_budget_instruction_details()
.sanitize_and_convert_to_compute_budget_limits()
else {
return Err(());
};
Expand Down

0 comments on commit a14b451

Please sign in to comment.