Omniscia Flisko Audit
KST Static Analysis Findings
KST Static Analysis Findings
KST-01S: Variable Mutability Specifier
| Type | Severity | Location |
|---|---|---|
| Gas Optimization | Informational | KST.sol:L7 |
Description:
The supply token is assigned to only once during its declaration.
Example:
contracts/KST.sol
7uint256 private supply = 1000000 ether;Recommendation:
We advise it to be set as constant heavily reducing the gas cost involved in reading the variable's value.
Alleviation:
The variable was properly set as constant.