change uint to uint256
This commit is contained in:
@ -8,9 +8,9 @@ import '../ownership/Ownable.sol';
|
||||
* @dev This is a truffle contract, needed for truffle integration, not meant for use by Zeppelin users.
|
||||
*/
|
||||
contract Migrations is Ownable {
|
||||
uint public lastCompletedMigration;
|
||||
uint256 public lastCompletedMigration;
|
||||
|
||||
function setCompleted(uint completed) onlyOwner {
|
||||
function setCompleted(uint256 completed) onlyOwner {
|
||||
lastCompletedMigration = completed;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user