Skip to content

Commit 974db72

Browse files
chore(docs): deploy version v29.6.2 (#4846)
Co-authored-by: julienrbrt <[email protected]>
1 parent 1f81516 commit 974db72

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

docs/versioned_docs/version-v29/02-guide/04-ibc.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ func (k Keeper) OnAcknowledgementIbcPostPacket(ctx sdk.Context, packet channelty
348348
case *channeltypes.Acknowledgement_Result:
349349
// Decode the packet acknowledgment
350350
var packetAck types.IbcPostPacketAck
351-
if err := transfertypes.ModuleCdc.UnmarshalJSON(dispatchedAck.Result, &packetAck); err != nil {
351+
if err := k.cdc.UnmarshalJSON(dispatchedAck.Result, &packetAck); err != nil {
352352
// The counter-party module doesn't implement the correct acknowledgment format
353353
return errors.New("cannot unmarshal acknowledgment")
354354
}
@@ -494,18 +494,6 @@ Open a different terminal window and run the following command to start the
494494
```bash
495495
ignite chain serve -c mars.yml
496496
```
497-
498-
### Remove Existing Relayer and Ignite CLI Configurations
499-
500-
If you previously used the relayer, follow these steps to remove exiting relayer
501-
and Ignite CLI configurations:
502-
503-
- Stop your blockchains and delete previous configuration files:
504-
505-
```bash
506-
rm -rf ~/.ignite/relayer
507-
```
508-
509497
If existing relayer configurations do not exist, the command returns `no matches
510498
found` and no action is taken.
511499

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

508+
If you previously used the relayer, follow these steps to remove exiting relayer
509+
and Ignite CLI configurations:
510+
511+
- Stop your blockchains and delete previous configuration files:
512+
513+
```bash
514+
ignite relayer hermes clear binaries
515+
ignite relayer hermes clear configs
516+
```
517+
520518
and after configure the relayer.
521519

522520
```bash
523-
ignite relayer hermes configure \
521+
ignite relayer hermes configure \
524522
"earth" "http://localhost:26657" "http://localhost:9090" \
525523
"mars" "http://localhost:26659" "http://localhost:9092" \
526524
--chain-a-faucet "http://0.0.0.0:4500" \

docs/versioned_docs/version-v29/03-CLI-Commands/01-cli-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $ ignite scaffold chain example
2121

2222
Announcements:
2323

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

2727

0 commit comments

Comments
 (0)