Skip to content

Commit

Permalink
rf: unlimited retry for update client
Browse files Browse the repository at this point in the history
  • Loading branch information
debendraoli committed Jul 9, 2024
1 parent 03b81ae commit fafe645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/chains/wasm/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ func (ap *WasmProvider) SendMessagesToMempool(
}
}
return err
}, retry.Context(ctx), rtyAtt, delay, rtyErr); err != nil {
}, retry.Context(ctx), retry.Attempts(0), delay, rtyErr); err != nil {
ap.log.Error("Failed to update client", zap.Any("Message", msg))
return err
}
Expand Down

0 comments on commit fafe645

Please sign in to comment.