Skip to content

Commit cd5a488

Browse files
committed
fix(host-contracts): delegations, expiry/expiration
1 parent 2566a14 commit cd5a488

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

host-contracts/contracts/ACLEvents.sol

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,29 @@ contract ACLEvents {
1818
/// @param delegate The address of the account that receives the delegation.
1919
/// @param contractAddress The contract address to delegate access to.
2020
/// @param delegationCounter Counter that tracks the order of each delegation or revocation.
21-
/// @param oldExpiryDate The previous UNIX timestamp when the user decryption delegation expires.
22-
/// @param newExpiryDate The new UNIX timestamp when the user decryption delegation expires.
21+
/// @param oldExpirationDate The previous UNIX timestamp when the user decryption delegation expires.
22+
/// @param newExpirationDate The new UNIX timestamp when the user decryption delegation expires.
2323
event DelegatedForUserDecryption(
2424
address indexed delegator,
2525
address indexed delegate,
2626
address contractAddress,
2727
uint64 delegationCounter,
28-
uint64 oldExpiryDate,
29-
uint64 newExpiryDate
28+
uint64 oldExpirationDate,
29+
uint64 newExpirationDate
3030
);
3131

3232
/// @notice Emitted when a delegation for user decryption is revoked.
3333
/// @param delegator The address of the account that delegates access to its handles.
3434
/// @param delegate The address of the account that receives the delegation.
3535
/// @param contractAddress The contract address to delegate access to.
3636
/// @param delegationCounter Counter that tracks the order of each delegation or revocation.
37-
/// @param oldExpiryDate The expiration UNIX timestamp of the revoked user decryption delegation.
37+
/// @param oldExpirationDate The expiration UNIX timestamp of the revoked user decryption delegation.
3838
event RevokedDelegationForUserDecryption(
3939
address indexed delegator,
4040
address indexed delegate,
4141
address contractAddress,
4242
uint64 delegationCounter,
43-
uint64 oldExpiryDate
43+
uint64 oldExpirationDate
4444
);
4545

4646
/// @notice Emitted when an account is added to the deny list.

0 commit comments

Comments
 (0)