Skip to content

Instantly share code, notes, and snippets.

@danbogd
Created August 23, 2019 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danbogd/d0efdb2b1232ec5aaac0d7eb2ce8ae16 to your computer and use it in GitHub Desktop.
Save danbogd/d0efdb2b1232ec5aaac0d7eb2ce8ae16 to your computer and use it in GitHub Desktop.

BetCrypto.Club Token audit report.

1. Summary

This document is a security audit report performed by danbogd, where BetCrypto.Club Token has been reviewed.

2. In scope

Сommit hash .

3. Findings

In total, 1 issues were reported including:

  • 0 medium severity issues
  • 0 low severity issues
  • 0 owner privileges (ability of owner to manipulate contract, may be risky for investors).
  • 1 notes.

No critical security issues were found.

3.1. Extra code

Severity: note

Description

Internal _burnFrom function is not used in this contract.

Code snippet

Line 248.

         function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount, "ERC20: burn amount exceeds allowance"));
        }    

4. Conclusion

The review did not show any critical issues, the audited smart contract is safe to deploy.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment