mirror of https://github.com/ConsenSys/mythril
Merge pull request #141 from JoranHonig/bugfix/maxuint
Assertion change in integer.py and fix flaky testspull/137/merge v0.16.18
commit
8868012b1c
@ -1,5 +1,14 @@ |
||||
{ |
||||
"success": true, |
||||
"error": null, |
||||
"issues": [] |
||||
"issues": [ |
||||
{ |
||||
"title": "Integer Overflow ", |
||||
"description": "A possible integer overflow exists in the function `sendToken(address,uint256)`.\nThe addition or multiplication may result in a value higher than the maximum representable integer.", |
||||
"function": "sendToken(address,uint256)", |
||||
"type": "Warning", |
||||
"address": 498, |
||||
"debug": "<DEBUG-DATA>" |
||||
} |
||||
] |
||||
} |
@ -0,0 +1,13 @@ |
||||
# Analysis results for test-filename.sol |
||||
|
||||
## Integer Overflow |
||||
|
||||
- Type: Warning |
||||
- Contract: Unknown |
||||
- Function name: `sendToken(address,uint256)` |
||||
- PC address: 498 |
||||
|
||||
### Description |
||||
|
||||
A possible integer overflow exists in the function `sendToken(address,uint256)`. |
||||
The addition or multiplication may result in a value higher than the maximum representable integer. |
@ -0,0 +1,9 @@ |
||||
==== Integer Overflow ==== |
||||
Type: Warning |
||||
Contract: Unknown |
||||
Function name: sendToken(address,uint256) |
||||
PC address: 498 |
||||
A possible integer overflow exists in the function `sendToken(address,uint256)`. |
||||
The addition or multiplication may result in a value higher than the maximum representable integer. |
||||
-------------------- |
||||
|
Loading…
Reference in new issue