fix: typo in attribute key (#986)

This commit is contained in:
Kevin Davis 2021-08-10 11:59:19 -06:00 committed by GitHub
parent b72815387a
commit 5981e61296
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ func (k Keeper) ClaimUSDXMintingReward(ctx sdk.Context, owner, receiver sdk.AccA
types.EventTypeClaim,
sdk.NewAttribute(types.AttributeKeyClaimedBy, owner.String()),
sdk.NewAttribute(types.AttributeKeyClaimAmount, claim.Reward.String()),
sdk.NewAttribute(types.AttributeKeyClaimAmount, claim.GetType()),
sdk.NewAttribute(types.AttributeKeyClaimType, claim.GetType()),
),
)
return nil