Change type to uint256

This commit is contained in:
Leonid Logvinov
2018-02-05 15:19:43 +01:00
parent c6358d5f22
commit 6325fac020

View File

@@ -11,7 +11,7 @@ contract Arbitrage is Ownable {
EtherDelta etherDelta;
address proxyAddress;
uint constant MAX_UINT = 2**256 - 1;
uint256 constant MAX_UINT = 2**256 - 1;
function Arbitrage(address _exchangeAddress, address _etherDeltaAddress, address _proxyAddress) {
exchange = Exchange(_exchangeAddress);