Fixed bug

This commit is contained in:
Thrilok Kumar 2020-07-18 00:56:22 +05:30
parent a12b7ec607
commit 9d8714a163

View File

@ -20,7 +20,7 @@ contract Helpers {
}
function changeFee(uint256 _fee) external isChief {
require(fee <= 2 * 10 ** 15, "Fee is more than 0.2%");
require(_fee <= 2 * 10 ** 15, "Fee is more than 0.2%");
fee = uint64(_fee);
emit LogChangeFee(_fee);
}