function excludeFromFee(address user) external onlyOwner requireValidAddress(user) {
users[user].isExcludedFromFee = true;
emit FeeExclusionSet(user, true);
}
There is no need specific recommendation for this finding.
bytes32 refoundAddress = bytes32(uint256(uint160(address(this))));
The variable refoundAddress is not used in the contract.
uint256 internal WHALE_THRESHOLD = 10000000 * (10 ** 18); // 10,000,000 LZY tokens
...
whaleFee = (value >= WHALE_THRESHOLD && WHALE_FEE_RATE != 0)
? (value * WHALE_FEE_RATE) / FEE_PRECISION
: 0;
There is no need specific recommendation for this finding.
Disclaimer: This smart contract audit report, conducted by SecureWise, is intended for informational purposes only. It does not constitute an endorsement, investment advice, or a guarantee of any kind. The audit involved code analysis, manual review, testing, and risk classification.