Skip to content

Commit fb28761

Browse files
committed
Apply reviews
1 parent 1a0e5e1 commit fb28761

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
## vNEXT
44

55
- Migrate proxy to Diamond pattern (ERC-2535):
6-
- feat: Restore compatibility with iExec SDK. (#240)
7-
- feat: Target latest EVM version (#239)
8-
- refactor: Adapt contracts file tree (#238)
9-
- feat: Use namespaced storage (#236, #237)
6+
- Restore compatibility with iExec SDK. (#240)
7+
- Target latest EVM version (#239)
8+
- Adapt contracts file tree (#238)
9+
- Use namespaced storage (#236, #237)
1010
- Format all solidity files (#233)
1111
- Rename ERC1538 architure to diamond Proxy architecture(#226, #229, #230, #234)
1212
- Remove ENS module (#225)

contracts/registries/Registry.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ abstract contract Registry is IRegistry, ERC721, Ownable {
4949
* On other chains, this function will revert to maintain retrocompatibility
5050
* in the SDK.
5151
*/
52+
// TODO remove this function when Bellecour is deprecated.
5253
function setName(address /* _ens */, string calldata /* _name */) external view onlyOwner() {
5354
revert("Operation not supported on this chain");
5455
}

contracts/registries/RegistryEntry.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ abstract contract RegistryEntry {
2727
* On other chains, this function will revert to maintain retrocompatibility
2828
* in the SDK.
2929
*/
30+
// TODO remove this function when Bellecour is deprecated.
3031
function setName(address /* _ens */, string calldata /* _name */) external view onlyOwner() {
3132
revert("Operation not supported on this chain");
3233
}

0 commit comments

Comments
 (0)