Skip to content

Commit

Permalink
chore: fix err msg (#971)
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-axner committed Feb 22, 2022
1 parent 6928af7 commit 6999e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/apps/29-fee/ibc_module.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (im IBCModule) OnChanOpenAck(
}

if versionMetadata.FeeVersion != types.Version {
return sdkerrors.Wrapf(types.ErrInvalidVersion, "expected counterparty version: %s, got: %s", types.Version, versionMetadata.FeeVersion)
return sdkerrors.Wrapf(types.ErrInvalidVersion, "expected counterparty fee version: %s, got: %s", types.Version, versionMetadata.FeeVersion)
}

// call underlying app's OnChanOpenAck callback with the counterparty app version.
Expand Down

0 comments on commit 6999e10

Please sign in to comment.