bump solidity version

This commit is contained in:
Ricardo Guilherme Schmidt 2018-04-26 01:39:02 -03:00
parent 839101af1d
commit 6fbb3b703a

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.17;
pragma solidity ^0.4.21;
import "../token/ERC20Token.sol";
import "../common/MessageSigned.sol";
@ -31,7 +31,7 @@ contract MessageTribute is MessageSigned {
* @notice Contructor of MessageTribute
* @param _token Address of Status Network Token (or any ERC20 compatible token)
**/
function MessageTribute(ERC20Token _token) public {
constructor(ERC20Token _token) public {
token = _token;
}