Clean up: banking_stage_prepare_sanitized_batch (#28841)
Use measure! for bank.prepare_sanitized_batch_with_results
This commit is contained in:
parent
c32377b5af
commit
a636038fff
|
@ -1507,9 +1507,9 @@ impl BankingStage {
|
||||||
// Only lock accounts for those transactions are selected for the block;
|
// Only lock accounts for those transactions are selected for the block;
|
||||||
// Once accounts are locked, other threads cannot encode transactions that will modify the
|
// Once accounts are locked, other threads cannot encode transactions that will modify the
|
||||||
// same account state
|
// same account state
|
||||||
let mut lock_time = Measure::start("lock_time");
|
let (batch, lock_time) = measure!(
|
||||||
let batch = bank.prepare_sanitized_batch_with_results(txs, transactions_qos_results.iter());
|
bank.prepare_sanitized_batch_with_results(txs, transactions_qos_results.iter())
|
||||||
lock_time.stop();
|
);
|
||||||
|
|
||||||
// retryable_txs includes AccountInUse, WouldExceedMaxBlockCostLimit
|
// retryable_txs includes AccountInUse, WouldExceedMaxBlockCostLimit
|
||||||
// WouldExceedMaxAccountCostLimit, WouldExceedMaxVoteCostLimit
|
// WouldExceedMaxAccountCostLimit, WouldExceedMaxVoteCostLimit
|
||||||
|
@ -1524,10 +1524,8 @@ impl BankingStage {
|
||||||
log_messages_bytes_limit,
|
log_messages_bytes_limit,
|
||||||
);
|
);
|
||||||
|
|
||||||
let mut unlock_time = Measure::start("unlock_time");
|
|
||||||
// Once the accounts are new transactions can enter the pipeline to process them
|
// Once the accounts are new transactions can enter the pipeline to process them
|
||||||
drop(batch);
|
let (_, unlock_time) = measure!(drop(batch));
|
||||||
unlock_time.stop();
|
|
||||||
|
|
||||||
let ExecuteAndCommitTransactionsOutput {
|
let ExecuteAndCommitTransactionsOutput {
|
||||||
ref mut retryable_transaction_indexes,
|
ref mut retryable_transaction_indexes,
|
||||||
|
|
Loading…
Reference in New Issue