Skip to content

Commit

Permalink
fix: add missing argument in onRevert call (#844)
Browse files Browse the repository at this point in the history
  • Loading branch information
zakir-code authored Dec 30, 2024
1 parent 3fb7b35 commit 4d9050f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/crosschain/keeper/bridge_call_in.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (k Keeper) BridgeCallHandler(ctx sdk.Context, msg *types.MsgBridgeCallClaim

// onRevert bridgecall
_, err = k.AddOutgoingBridgeCall(ctx, msg.GetToAddr(), common.Address{}, sdk.NewCoins(),
msg.GetSenderAddr(), []byte(revertMsg), []byte{}, msg.EventNonce)
msg.GetSenderAddr(), []byte(revertMsg), []byte{}, 0, msg.EventNonce)
return err
}

Expand Down

0 comments on commit 4d9050f

Please sign in to comment.