This document is a security audit report performed by danbogd, where Blume Token has been reviewed.
Сommit hash .
In total, 2 issues were reported including:
- 0 medium severity issues
- 1 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.
-
It is possible to double withdrawal attack. More details here.
-
Lack of transaction handling mechanism issue. WARNING! This is a very common issue and it already caused millions of dollars losses for lots of token users! More details here.
Add into a function transfer(address _to, ... ) following code:
require( _to != address(this) );
The function () payable { revert(); } was a pattern used to prevent implicit acceptance of ether in Solidity versions older than 0.4.0, but today this is unneeded.
function () public payable {
revert();
}
The review did not show any critical issues, some of low severity issues were found.