Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
buffalu committed Apr 11, 2024
1 parent 9e03e8b commit 0fd5771
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/src/banking_stage/unprocessed_transaction_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,10 @@ impl BundleStorage {
}
Err(BundleExecutionError::ExceedsCostModel) => {
// cost model buffered bundles contain most recent bundles at the front of the queue
debug!("bundle={} exceeds cost model, rebuffering", sanitized_bundle.bundle_id);
debug!(
"bundle={} exceeds cost model, rebuffering",
sanitized_bundle.bundle_id
);
self.push_back_cost_model_buffered_bundles(vec![deserialized_bundle]);
}
Err(BundleExecutionError::TransactionFailure(
Expand Down

0 comments on commit 0fd5771

Please sign in to comment.