Skip to content

Commit 0def2c5

Browse files
fix(tx_pool_throughput_analysis): remove upper limit on transaction count for measurement intervals
1 parent 359e864 commit 0def2c5

File tree

1 file changed

+1
-1
lines changed
  • pkg/coordinator/tasks/tx_pool_throughput_analysis

1 file changed

+1
-1
lines changed

pkg/coordinator/tasks/tx_pool_throughput_analysis/task.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func (t *Task) Execute(ctx context.Context) error {
173173

174174
gotTx += len(*_txs)
175175

176-
if gotTx%t.config.MeasureInterval != 0 || gotTx >= 9900 {
176+
if gotTx%t.config.MeasureInterval != 0 {
177177
continue
178178
}
179179

0 commit comments

Comments
 (0)