Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/interfaces/IBlockBuilderPolicy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ interface IBlockBuilderPolicy {

/// @notice Emitted when a workload is added to the policy
/// @param workloadId The workload identifier
event WorkloadAddedToPolicy(bytes32 workloadId);
event WorkloadAddedToPolicy(bytes32 indexed workloadId);
/// @notice Emitted when a workload is removed from the policy
/// @param workloadId The workload identifier
event WorkloadRemovedFromPolicy(bytes32 workloadId);
event WorkloadRemovedFromPolicy(bytes32 indexed workloadId);
/// @notice Emitted when the registry is set in the initializer
/// @param registry The address of the registry
event RegistrySet(address registry);
event RegistrySet(address indexed registry);
/// @notice Emitted when a block builder proof is successfully verified
/// @param caller The address that called the verification function (TEE address)
/// @param workloadId The workload identifier of the TEE
Expand Down
6 changes: 3 additions & 3 deletions src/interfaces/IFlashtestationRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ interface IFlashtestationRegistry {
/// @param teeAddress The address of the TEE service
/// @param rawQuote The raw quote from the TEE device
/// @param alreadyExists Whether the TEE service is already registered
event TEEServiceRegistered(address teeAddress, bytes rawQuote, bool alreadyExists);
event TEEServiceRegistered(address indexed teeAddress, bytes rawQuote, bool alreadyExists);
/// @notice Emitted when a TEE service is invalidated
/// @param teeAddress The address of the TEE service
event TEEServiceInvalidated(address teeAddress);
event TEEServiceInvalidated(address indexed teeAddress);
/// @notice Emitted when a previous signature is invalidated
/// @param teeAddress The address of the TEE service
/// @param invalidatedNonce The nonce of the invalidated signature
event PreviousSignatureInvalidated(address teeAddress, uint256 invalidatedNonce);
event PreviousSignatureInvalidated(address indexed teeAddress, uint256 invalidatedNonce);

// ============ Errors ============

Expand Down