Browse Source

Merge pull request #567 from hermeznetwork/fix/tx-manager-redundant-condition

tx manager: remove redundant error check
feature/common-tests-update
arnau 3 years ago
committed by GitHub
parent
commit
5a11aa5c27
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      coordinator/txmanager.go

+ 1
- 1
coordinator/txmanager.go

@ -231,7 +231,7 @@ func (t *TxManager) sendRollupForgeBatch(ctx context.Context, batchInfo *BatchIn
"err", err, "gasPrice", auth.GasPrice, "batchNum", batchInfo.BatchNum)
auth.GasPrice = addPerc(auth.GasPrice, 10)
attempt--
} else if err != nil {
} else {
log.Errorw("TxManager ethClient.RollupForgeBatch",
"attempt", attempt, "err", err, "block", t.stats.Eth.LastBlock.Num+1,
"batchNum", batchInfo.BatchNum)

Loading…
Cancel
Save