Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 12 additions & 14 deletions docs/versioned_docs/version-v29/02-guide/04-ibc.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ func (k Keeper) OnAcknowledgementIbcPostPacket(ctx sdk.Context, packet channelty
case *channeltypes.Acknowledgement_Result:
// Decode the packet acknowledgment
var packetAck types.IbcPostPacketAck
if err := transfertypes.ModuleCdc.UnmarshalJSON(dispatchedAck.Result, &packetAck); err != nil {
if err := k.cdc.UnmarshalJSON(dispatchedAck.Result, &packetAck); err != nil {
// The counter-party module doesn't implement the correct acknowledgment format
return errors.New("cannot unmarshal acknowledgment")
}
Expand Down Expand Up @@ -494,18 +494,6 @@ Open a different terminal window and run the following command to start the
```bash
ignite chain serve -c mars.yml
```

### Remove Existing Relayer and Ignite CLI Configurations

If you previously used the relayer, follow these steps to remove exiting relayer
and Ignite CLI configurations:

- Stop your blockchains and delete previous configuration files:

```bash
rm -rf ~/.ignite/relayer
```

If existing relayer configurations do not exist, the command returns `no matches
found` and no action is taken.

Expand All @@ -517,10 +505,20 @@ First, add the Hermes relayer app.
ignite app install -g github.com/ignite/apps/hermes
```

If you previously used the relayer, follow these steps to remove exiting relayer
and Ignite CLI configurations:

- Stop your blockchains and delete previous configuration files:

```bash
ignite relayer hermes clear binaries
ignite relayer hermes clear configs
```

and after configure the relayer.

```bash
ignite relayer hermes configure \
ignite relayer hermes configure \
"earth" "http://localhost:26657" "http://localhost:9090" \
"mars" "http://localhost:26659" "http://localhost:9092" \
--chain-a-faucet "http://0.0.0.0:4500" \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $ ignite scaffold chain example

Announcements:

A new tutorial has been published! Learn more on https://tutorials.ignite.com 📖
Check out how to integrate the EVM or POA in our latest tutorials: https://tutorials.ignite.com 📖
⋆ Satisfied with Ignite? Or totally fed-up with it? Tell us: https://bit.ly/3WZS2uS


Expand Down