We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LenderCommitmentGroupShares
msg.sender
Ownable()
Petite Pewter Orangutan
High
LenderCommitmentGroupShares missing msg.sender on constructor's Ownable()
It will not be possible to deploy the contract with the correct ownership.
LenderCommitmentGroupShares::constructor
constructor(string memory _name, string memory _symbol, uint8 _decimals) ERC20(_name, _symbol) @> Ownable() { DECIMALS = _decimals; }
Add msg.sender on the constructor's Ownable()
constructor(string memory _name, string memory _symbol, uint8 _decimals) ERC20(_name, _symbol) - Ownable() + Ownable(msg.sender) { DECIMALS = _decimals; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Petite Pewter Orangutan
High
LenderCommitmentGroupShares
missingmsg.sender
on constructor'sOwnable()
Summary
LenderCommitmentGroupShares missing
msg.sender
on constructor'sOwnable()
Impact
It will not be possible to deploy the contract with the correct ownership.
PoC
LenderCommitmentGroupShares::constructor
Mitigation
Add
msg.sender
on the constructor'sOwnable()
The text was updated successfully, but these errors were encountered: