Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com> Co-authored-by: Ernesto García <ernestognw@gmail.com> Co-authored-by: Arr00 <13561405+arr00@users.noreply.github.com> Co-authored-by: Voronor <129545215+voronor@users.noreply.github.com> Co-authored-by: StackOverflowExcept1on <109800286+StackOverflowExcept1on@users.noreply.github.com> Co-authored-by: Michalis Kargakis <kargakis@protonmail.com>
This commit is contained in:
@ -216,13 +216,23 @@ abstract contract Initializable {
|
||||
return _getInitializableStorage()._initializing;
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.
|
||||
*
|
||||
* NOTE: Consider following the ERC-7201 formula to derive storage locations.
|
||||
*/
|
||||
function _initializableStorageSlot() internal pure virtual returns (bytes32) {
|
||||
return INITIALIZABLE_STORAGE;
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Returns a pointer to the storage namespace.
|
||||
*/
|
||||
// solhint-disable-next-line var-name-mixedcase
|
||||
function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
|
||||
bytes32 slot = _initializableStorageSlot();
|
||||
assembly {
|
||||
$.slot := INITIALIZABLE_STORAGE
|
||||
$.slot := slot
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user