Skip to content

Commit

Permalink
Remove IBC-rate limits descendant recheck calls
Browse files Browse the repository at this point in the history
  • Loading branch information
ValarDragon committed Jun 20, 2024
1 parent 53435f3 commit f121350
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x/ibc-rate-limit/ibc_module.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ func (im *IBCModule) OnAcknowledgementPacket(
relayer sdk.AccAddress,
) error {
if ctx.IsCheckTx() || ctx.IsReCheckTx() {
return im.app.OnAcknowledgementPacket(ctx, packet, acknowledgement, relayer)
return nil
// return im.app.OnAcknowledgementPacket(ctx, packet, acknowledgement, relayer)
}
var ack channeltypes.Acknowledgement
if err := json.Unmarshal(acknowledgement, &ack); err != nil {
Expand Down

0 comments on commit f121350

Please sign in to comment.