eshon / ol3buildr

0 stars 0 forks source link

Migrations.sol Missing “;” #15

Open eshon opened 5 years ago

eshon commented 5 years ago

Migrations.sol:7:3: ParserError: Expected token Semicolon got 'RBrace' } ^

eshon commented 5 years ago

➤ Nikhil Kumar Mishra commented:

replace code in migrations.sol

contract Migrations { address public owner; uint public last_completed_migration;

modifier restricted() { if (msg.sender == owner) _; }

function Migrations() { owner = msg.sender; }

function setCompleted(uint completed) restricted { last_completed_migration = completed; }

function upgrade(address new_address) restricted { Migrations upgraded = Migrations(new_address); upgraded.setCompleted(last_completed_migration); } }