We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3dd0355 + 1928b0b commit 2d07638Copy full SHA for 2d07638
pkg/coordinator/tasks/tx_pool_throughput_analysis/task.go
@@ -236,7 +236,7 @@ func (t *Task) Execute(ctx context.Context) error {
236
}
237
238
t.logger.Infof("Got %d transactions", gotTx)
239
- t.logger.Infof("Tx/s: (%d txs processed): %.2f / s \n", t.config.MeasureInterval, float64(t.config.MeasureInterval)*float64(time.Second)/float64(time.Since(lastMeasureTime)))
+ t.logger.Infof("Tx/s: (%d txs processed): %.2f / s \n", gotTx, float64(t.config.MeasureInterval)*float64(time.Second)/float64(time.Since(lastMeasureTime)))
240
241
lastMeasureTime = time.Now()
242
0 commit comments