@@ -255,7 +255,9 @@ contract IdRegistry is IIdRegistry, Migration, Signatures, EIP712, Nonces {
255
255
/**
256
256
* @inheritdoc IIdRegistry
257
257
*/
258
- function changeRecoveryAddress (address recovery ) external whenNotPaused {
258
+ function changeRecoveryAddress (
259
+ address recovery
260
+ ) external whenNotPaused {
259
261
/* Revert if the caller does not own an fid */
260
262
uint256 ownerId = idOf[msg .sender ];
261
263
if (ownerId == 0 ) revert HasNoId ();
@@ -359,7 +361,9 @@ contract IdRegistry is IIdRegistry, Migration, Signatures, EIP712, Nonces {
359
361
/**
360
362
* @inheritdoc IIdRegistry
361
363
*/
362
- function setIdGateway (address _idGateway ) external onlyOwner {
364
+ function setIdGateway (
365
+ address _idGateway
366
+ ) external onlyOwner {
363
367
if (gatewayFrozen) revert GatewayFrozen ();
364
368
emit SetIdGateway (idGateway, _idGateway);
365
369
idGateway = _idGateway;
@@ -378,7 +382,9 @@ contract IdRegistry is IIdRegistry, Migration, Signatures, EIP712, Nonces {
378
382
MIGRATION
379
383
//////////////////////////////////////////////////////////////*/
380
384
381
- function bulkRegisterIds (BulkRegisterData[] calldata ids ) external onlyMigrator {
385
+ function bulkRegisterIds (
386
+ BulkRegisterData[] calldata ids
387
+ ) external onlyMigrator {
382
388
// Safety: i can be incremented unchecked since it is bound by ids.length.
383
389
unchecked {
384
390
for (uint256 i = 0 ; i < ids.length ; i++ ) {
@@ -403,7 +409,9 @@ contract IdRegistry is IIdRegistry, Migration, Signatures, EIP712, Nonces {
403
409
}
404
410
}
405
411
406
- function bulkResetIds (uint24 [] calldata ids ) external onlyMigrator {
412
+ function bulkResetIds (
413
+ uint24 [] calldata ids
414
+ ) external onlyMigrator {
407
415
// Safety: i can be incremented unchecked since it is bound by ids.length.
408
416
unchecked {
409
417
for (uint256 i = 0 ; i < ids.length ; i++ ) {
@@ -419,7 +427,9 @@ contract IdRegistry is IIdRegistry, Migration, Signatures, EIP712, Nonces {
419
427
}
420
428
}
421
429
422
- function setIdCounter (uint256 _counter ) external onlyMigrator {
430
+ function setIdCounter (
431
+ uint256 _counter
432
+ ) external onlyMigrator {
423
433
emit SetIdCounter (idCounter, _counter);
424
434
idCounter = _counter;
425
435
}
0 commit comments