我正在尝试使用一个参数调用函数
我用这些方法都行不通: // z = addmul(total); //this.addmul(total);
这是创建的函数:
function addmul(uint256 a, uint256 b) internal pure returns (uint256 c ) {
require(c >= a, "SafeMath: overflow encountered");
return c;
}
鉴于意外的结果,它是这样调用的:
//multiplication operation
function multiplication(uint256 x, uint y) public {
total=x+y;
//z=addmul(total);
//this.addmul(total);
}
我希望addmull函数影响总变量的计算值