Skip to content

Commit

Permalink
Remove 'indexed' from string relType events
Browse files Browse the repository at this point in the history
  • Loading branch information
jdubpark authored and LeoHChen committed Dec 1, 2023
1 parent 90b8a96 commit eb33a26
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface IRelationshipModule {
/// Emitted with a new Relationship Type definitions is created
event RelationshipTypeSet(
// Short string naming the type
string indexed relType,
string relType,
// Zero for protocol-wide, or address of the IPOrg
address indexed ipOrg,
// Allowed src address, zero address if empty, all F for all addresses are OK
Expand All @@ -29,7 +29,7 @@ interface IRelationshipModule {
/// Emitted when a Relationship Type definition is removed
event RelationshipTypeUnset(
// Short string naming the type
string indexed relType,
string relType,
// Zero for protocol-wide, or address of the IPOrg
address ipOrg
);
Expand All @@ -39,7 +39,7 @@ interface IRelationshipModule {
// Sequential Relationship ID
uint256 indexed relationshipId,
// Short string naming the type
string indexed relType,
string relType,
// Source contract or EOA
address srcAddress,
// Source item ID
Expand Down

0 comments on commit eb33a26

Please sign in to comment.