minor code linting

This commit is contained in:
Vaibhav Khanna 2022-04-15 16:29:13 +05:30
parent 39dcf2f359
commit 2989ad5ef3
2 changed files with 3 additions and 4 deletions

View File

@ -12,4 +12,4 @@ contract Events {
event setImplementationLog(address implementation_, bytes4[] sigs_);
event removeImplementationLog(address implementation_);
}
}

View File

@ -31,7 +31,7 @@ contract Internals is Events {
*/
bytes32 internal constant _DUMMY_IMPLEMENTATION_SLOT =
0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev Returns the storage slot which stores the sigs array set for the implementation.
*/
@ -235,7 +235,6 @@ contract Internals is Events {
}
contract AdminStuff is Internals {
/**
* @dev Only admin gaurd.
*/
@ -340,4 +339,4 @@ abstract contract Proxy is AdminStuff {
_fallback(msg.sig);
}
}
}
}