Skip to content

Commit

Permalink
✨(gateway) Set indexed args on events
Browse files Browse the repository at this point in the history
  • Loading branch information
Nakasar committed Jul 17, 2023
1 parent d8c665c commit 748769a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/gateway/Gateway.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ contract Gateway is Ownable {
mapping(address => bool) public approvedSigners;
mapping(bytes => bool) public revokedSignatures;

event SignerApproved(address signer);
event SignerRevoked(address signer);
event SignatureRevoked(bytes signature);
event SignatureApproved(bytes signature);
event SignerApproved(address indexed signer);
event SignerRevoked(address indexed signer);
event SignatureRevoked(bytes indexed signature);
event SignatureApproved(bytes indexed signature);

/**
* @dev Constructor for the ONCHAINID Factory Gateway.
Expand Down

0 comments on commit 748769a

Please sign in to comment.