L-3: Missing checks for address(0) when assigning values to address state variables
Check for address(0) when assigning values to address state variables.
2 Found Instances
- Found in contracts/GammaRewarder.sol [Line: 83](contracts/GammaRewarder.sol#L83)
```solidity
protocolFeeRecipient = _protocolFeeRecipient;
```
- Found in contracts/GammaRewarder.sol [Line: 263](contracts/GammaRewarder.sol#L263)
```solidity
protocolFeeRecipient = _feeRecipient;
```
Joyous Pistachio Lark
Low/Info
L-3: Missing checks for
address(0)
when assigning values to address state variablesCheck for
address(0)
when assigning values to address state variables.2 Found Instances
- Found in contracts/GammaRewarder.sol [Line: 83](contracts/GammaRewarder.sol#L83) ```solidity protocolFeeRecipient = _protocolFeeRecipient; ``` - Found in contracts/GammaRewarder.sol [Line: 263](contracts/GammaRewarder.sol#L263) ```solidity protocolFeeRecipient = _feeRecipient; ```