Skip to content

Commit

Permalink
added comma
Browse files Browse the repository at this point in the history
  • Loading branch information
CJPotter10 committed Nov 21, 2024
1 parent cd574c1 commit 47bc33d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x/oracle/keeper/msg_server_tip.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"encoding/hex"
"errors"
"fmt"
"strconv"

layer "github.com/tellor-io/layer/types"
"github.com/tellor-io/layer/utils"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 47bc33d

Please sign in to comment.