We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87df196 commit eb07972Copy full SHA for eb07972
contracts/factory/IdFactory.sol
@@ -94,7 +94,9 @@ contract IdFactory is IIdFactory, Ownable {
94
address identity = _deployIdentity(oidSalt, _implementationAuthority, address(this));
95
96
for (uint i = 0; i < _managementKeys.length; i++) {
97
- require(_managementKeys[i] != keccak256(abi.encode(_wallet)), "invalid argument - wallet is also listed in management keys");
+ require(
98
+ _managementKeys[i] != keccak256(abi.encode(_wallet))
99
+ , "invalid argument - wallet is also listed in management keys");
100
IERC734(identity).addKey(
101
_managementKeys[i],
102
1,
0 commit comments