Skip to content

Commit

Permalink
Merge branch 'main' into damian/2900-lightclients-initialize
Browse files Browse the repository at this point in the history
  • Loading branch information
damiannolan authored Dec 15, 2022
2 parents e2d2544 + ad6ed7e commit 1c76232
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/ibc/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ All light clients must be registered with `module.BasicManager` in a chain's app

The following code example shows how to register the existing `ibctm.AppModuleBasic{}` light client implementation.

```go
```diff

import (
...
ibctm "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint"
+ ibctm "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint"
...
)

Expand All @@ -55,7 +55,7 @@ var (
transfer.AppModuleBasic{}, // i.e ibc-transfer module

// register light clients on IBC
ibctm.AppModuleBasic{},
+ ibctm.AppModuleBasic{},
)

// module account permissions
Expand Down
2 changes: 1 addition & 1 deletion modules/apps/transfer/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

var _ types.MsgServer = Keeper{}

// Transfer defines a rpc handler method for MsgTransfer.
// Transfer defines an rpc handler method for MsgTransfer.
func (k Keeper) Transfer(goCtx context.Context, msg *types.MsgTransfer) (*types.MsgTransferResponse, error) {
ctx := sdk.UnwrapSDKContext(goCtx)

Expand Down

0 comments on commit 1c76232

Please sign in to comment.