@@ -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
495495ignite 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-
509497If existing relayer configurations do not exist, the command returns `no matches
510498found` and no action is taken.
511499
@@ -517,10 +505,20 @@ First, add the Hermes relayer app.
517505ignite 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+
520518and 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" \
0 commit comments