Skip to content

Commit

Permalink
fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
ws4charlie committed Jun 21, 2024
1 parent d171a44 commit 6a5bb47
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions zetaclient/chains/evm/signer/signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -544,8 +544,10 @@ func (signer *Signer) BroadcastOutbound(
time.Sleep(backOff)
err := signer.Broadcast(tx)
if err != nil {
log.Warn().Err(err).Msgf("BroadcastOutbound: error broadcasting tx %s on chain %d nonce %d retry %d signer %s",
outboundHash, toChain.ChainId, cctx.GetCurrentOutboundParam().TssNonce, i, myID)
log.Warn().
Err(err).
Msgf("BroadcastOutbound: error broadcasting tx %s on chain %d nonce %d retry %d signer %s",
outboundHash, toChain.ChainId, cctx.GetCurrentOutboundParam().TssNonce, i, myID)
retry, report := zetacore.HandleBroadcastError(
err,
strconv.FormatUint(cctx.GetCurrentOutboundParam().TssNonce, 10),
Expand Down

0 comments on commit 6a5bb47

Please sign in to comment.