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 3, 2024
1 parent be030c4 commit 2d9cc88
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 2d9cc88

Please sign in to comment.