Never_Defined

Results 1 issues of Never_Defined

Cosmos emits events that have the same name but different attributes: ```go ctx.EventManager().EmitEvent( sdk.NewEvent(govtypes.EventTypeSubmitProposal, sdk.NewAttribute(govtypes.AttributeKeyVotingPeriodStart, fmt.Sprintf("%d", proposal.Id)), ), ) ctx.EventManager().EmitEvent( sdk.NewEvent( types.EventTypeSubmitProposal, sdk.NewAttribute(types.AttributeKeyProposalID, fmt.Sprintf("%d", proposalID)), sdk.NewAttribute(types.AttributeKeyProposalMessages, msgsStr), ), ) ```...

bug