Skip to content

Commit 94a4748

Browse files
committed
shutter-service: update doc
1 parent 41acc96 commit 94a4748

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/shutter-service/ShutterRegistry.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ contract ShutterRegistry is Ownable {
2020
uint64 timestamp;
2121
}
2222
/**
23-
* @dev Mapping to store registration timestamps for each identity.
24-
* The identity is represented as a `bytes32` hash and mapped to a uint64 timestamp.
23+
* @dev Mapping to store registration data for each identity.
24+
* The identity is represented as a `bytes32` hash and mapped to struct RegsitrationData.
2525
*/
2626
mapping(bytes32 identity => RegsitrationData) public registrations;
2727

@@ -45,7 +45,7 @@ contract ShutterRegistry is Ownable {
4545
constructor() Ownable(msg.sender) {}
4646

4747
/**
48-
* @notice Registers a new identity with a specified timestamp.
48+
* @notice Registers a new identity with a specified timestamp and eon.
4949
* @dev The identity is derived by hashing the provided `identityPrefix` concatenated with the sender's address.
5050
* @param eon The eon associated with the identity.
5151
* @param identityPrefix The input used to derive the identity hash.

0 commit comments

Comments
 (0)