Skip to content
This repository has been archived by the owner on Oct 3, 2022. It is now read-only.

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
sujine2 authored and boosik committed Sep 5, 2022
1 parent f0ff305 commit 952d8a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/apps/31-ibc-query/keeper/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ func EmitQueryEvent(ctx sdk.Context, query *types.MsgSubmitCrossChainQuery) {
ctx.EventManager().EmitEvents(sdk.Events{
sdk.NewEvent(
types.EventSendQuery,
sdk.NewAttribute(types.AttributeKeyTimeoutHeight, string(query.GetTimeoutHeight())),
sdk.NewAttribute(types.AttributeKeyTimeoutHeight, fmt.Sprintf("%d", query.GetTimeoutHeight())),
sdk.NewAttribute(types.AttributeKeyTimeoutTimestamp, fmt.Sprintf("%d", query.GetTimeoutTimestamp())),
sdk.NewAttribute(types.AttributeKeyQueryHeight, string(query.GetQueryHeight())),
sdk.NewAttribute(types.AttributeKeyQueryHeight, fmt.Sprintf("%d",query.GetQueryHeight())),
sdk.NewAttribute(types.AttributeKeyQueryID, string(query.GetQueryId())),
),
sdk.NewEvent(
Expand Down

0 comments on commit 952d8a3

Please sign in to comment.