From a418ee2f72024790f9d23659d2ac75aa5079c439 Mon Sep 17 00:00:00 2001 From: srdtrk <59252793+srdtrk@users.noreply.github.com> Date: Fri, 8 Sep 2023 22:33:17 +0300 Subject: [PATCH] docs(fee): fixed 'PayPacketFeeAsync' godocs (#4606) --- modules/apps/29-fee/keeper/msg_server.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/apps/29-fee/keeper/msg_server.go b/modules/apps/29-fee/keeper/msg_server.go index 6c6d9b810f4..b9f192c4b2c 100644 --- a/modules/apps/29-fee/keeper/msg_server.go +++ b/modules/apps/29-fee/keeper/msg_server.go @@ -118,8 +118,8 @@ func (k Keeper) PayPacketFee(goCtx context.Context, msg *types.MsgPayPacketFee) return &types.MsgPayPacketFeeResponse{}, nil } -// PayPacketFee defines a rpc handler method for MsgPayPacketFee -// PayPacketFee is an open callback that may be called by any module/user that wishes to escrow funds in order to +// PayPacketFeeAsync defines a rpc handler method for MsgPayPacketFeeAsync +// PayPacketFeeAsync is an open callback that may be called by any module/user that wishes to escrow funds in order to // incentivize the relaying of a known packet. Only packets which have been sent and have not gone through the // packet life cycle may be incentivized. func (k Keeper) PayPacketFeeAsync(goCtx context.Context, msg *types.MsgPayPacketFeeAsync) (*types.MsgPayPacketFeeAsyncResponse, error) {