Skip to content

Commit 8360ce4

Browse files
authored
chore: fix 404 status URL (#2132)
Signed-off-by: costcould <[email protected]>
1 parent 8c8ac41 commit 8360ce4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

x/wasm/keeper/relay.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var _ types.IBCContractKeeper = (*Keeper)(nil)
2222
// In the IBC protocol this is either the `Channel Open Init` event on the initiating chain or
2323
// `Channel Open Try` on the counterparty chain.
2424
// Protocol version and channel ordering should be verified for example.
25-
// See https://github.com/cosmos/ics/tree/master/spec/ics-004-channel-and-packet-semantics#channel-lifecycle-management
25+
// See https://github.com/cosmos/ibc/blob/main/spec/core/ics-004-channel-and-packet-semantics/README.md#channel-lifecycle-management
2626
func (k Keeper) OnOpenChannel(
2727
ctx sdk.Context,
2828
contractAddr sdk.AccAddress,
@@ -128,9 +128,9 @@ func (k Keeper) OnCloseChannel(
128128
// OnRecvPacket calls the contract to process the incoming IBC packet. The contract fully owns the data processing and
129129
// returns the acknowledgement data for the chain level. This allows custom applications and protocols on top
130130
// of IBC. Although it is recommended to use the standard acknowledgement envelope defined in
131-
// https://github.com/cosmos/ics/tree/master/spec/ics-004-channel-and-packet-semantics#acknowledgement-envelope
131+
// https://github.com/cosmos/ibc/blob/main/spec/core/ics-004-channel-and-packet-semantics/README.md#acknowledgement-envelope
132132
//
133-
// For more information see: https://github.com/cosmos/ics/tree/master/spec/ics-004-channel-and-packet-semantics#packet-flow--handling
133+
// For more information see: https://github.com/cosmos/ibc/blob/main/spec/core/ics-004-channel-and-packet-semantics/README.md#packet-flow--handling
134134
func (k Keeper) OnRecvPacket(
135135
ctx sdk.Context,
136136
contractAddr sdk.AccAddress,

0 commit comments

Comments
 (0)