diff --git a/x/oracle/keeper/msg_server_tip.go b/x/oracle/keeper/msg_server_tip.go index 36fbcc73..4034308c 100644 --- a/x/oracle/keeper/msg_server_tip.go +++ b/x/oracle/keeper/msg_server_tip.go @@ -5,6 +5,7 @@ import ( "encoding/hex" "errors" "fmt" + "strconv" layer "github.com/tellor-io/layer/types" "github.com/tellor-io/layer/utils" @@ -101,7 +102,7 @@ func (k msgServer) Tip(goCtx context.Context, msg *types.MsgTip) (*types.MsgTipR sdk.NewAttribute("query_id", hex.EncodeToString(queryId)), sdk.NewAttribute("tipper", tipper.String()), sdk.NewAttribute("amount", tip.Amount.String()), - sdk.NewAttribute("querymeta_id", strconv.Itoa(int(query.Id))) + sdk.NewAttribute("querymeta_id", strconv.Itoa(int(query.Id))), ), }) return &types.MsgTipResponse{}, nil