Initializable
- (Initializable.sol)
Initializable - version: 0.1.12
Helper contract to support initializer functions. To use it, replace the constructor with a function that has the
initializer
modifier. WARNING: Unlike constructors, initializer functions must be manually invoked. This applies both to deploying an Initializable contract, as well as extending an Initializable contract via inheritance. WARNING: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or ensure that all initializers are idempotent, because this is not dealt with automatically as with constructors.Constants & Variables
bool private initialized;
bool private initializing;
uint256[50] private ______gap;
Modifier to use in the initializer function of a contract.
modifier initializer() internal
Arguments
Returns true if and only if the function is running in the constructor
function isConstructor() private view
returns(bool)
Arguments
Last modified 1yr ago