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
There is no visibility set on rAllowance mapping in the Funnel contract and on deployments mapping in the FunnelFactory contract.
Explicitly labeling the visibility makes it easier to catch incorrect assumptions about who can access the variable.
By default, the variables are marked as public, and the compiler automatically generates view functions that can be unnecessary in this case.
Paths: ./src/Funnel.sol : rAllowance ./src/FunnelFactory.sol : deployments
Recommendation: Variables can be specified as being public, internal, or private. Explicitly define the visibility for all state variables.
Status: New
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
There is no visibility set on rAllowance mapping in the Funnel contract and on deployments mapping in the FunnelFactory contract.
Explicitly labeling the visibility makes it easier to catch incorrect assumptions about who can access the variable.
By default, the variables are marked as public, and the compiler automatically generates view functions that can be unnecessary in this case.
Paths:
./src/Funnel.sol : rAllowance
./src/FunnelFactory.sol : deployments
Recommendation: Variables can be specified as being public, internal, or private. Explicitly define the visibility for all state variables.
Status: New
The text was updated successfully, but these errors were encountered: