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
The operator state variable in DepositToken is set in the constructor and cannot change. It can be declared immutable:
operator
DepositToken
address public operator; constructor(address _operator, address _lptoken) ERC20( string(abi.encodePacked(ERC20(_lptoken).name(), " Vetoken Deposit")), string(abi.encodePacked("VE3", ERC20(_lptoken).symbol())) ) { operator = _operator; }
The text was updated successfully, but these errors were encountered:
horsefacts issue #219
8144351
2.1k
Sorry, something went wrong.
No branches or pull requests
Gas
The
operator
state variable inDepositToken
is set in the constructor and cannot change. It can be declared immutable:DepositToken
The text was updated successfully, but these errors were encountered: