Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
goran-ethernal committed Apr 20, 2024
1 parent 1a13e19 commit 4012c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loadtest/runner/base_load_test_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ func (r *BaseLoadTestRunner) sendTransactionsForUser(account *account, chainID *
checkFeeDataNum := r.cfg.TxsPerUser / 5

for i := 0; i < r.cfg.TxsPerUser; i++ {
if i%checkFeeDataNum == 0 {
if checkFeeDataNum > 0 && i%checkFeeDataNum == 0 {
feeData, err = getFeeData(r.client, r.cfg.DynamicTxs)
if err != nil {
return nil, nil, err
Expand Down

0 comments on commit 4012c83

Please sign in to comment.