以太坊一些脆弱性問題學習筆記1

1,數值溢出 此函數是計算乘法。如果使用的是非常大的數字,變量將溢出,而不是大數字。 程序 pragma solidity ^0.4.10; contract test { function calculateSum(uint24 a, uint24 b) returns(uint24) {   return a * b; } } 隨便輸入一個大數字,變量溢出 • 數值上溢: contract T
相關文章
相關標籤/搜索