Skip to content

Commit

Permalink
Hotfix event: string method
Browse files Browse the repository at this point in the history
  • Loading branch information
mattverse authored and ValarDragon committed Oct 11, 2021
1 parent 30a885d commit be48cbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/incentives/keeper/gauge.go
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ func (k Keeper) doDistributionSends(ctx sdk.Context, denom string, distrs distri
sdk.NewEvent(
types.TypeEvtDistribution,
sdk.NewAttribute(types.AttributeLockedDenom, denom),
sdk.NewAttribute(types.AttributeReceiver, string(distrs.idToDecodedAddr[id])),
sdk.NewAttribute(types.AttributeReceiver, distrs.idToDecodedAddr[id].String()),
sdk.NewAttribute(types.AttributeAmount, distrs.idToDistrCoins[id].String()),
),
})
Expand Down

0 comments on commit be48cbd

Please sign in to comment.