Removed unnecessary files

This commit is contained in:
Thrilok Kumar 2021-03-23 16:06:35 +05:30
parent 35c3e259ac
commit 495e074a16
2 changed files with 0 additions and 24 deletions

View File

@ -1,19 +0,0 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.8.0;
contract Migrations {
address public owner = msg.sender;
uint public last_completed_migration;
modifier restricted() {
require(
msg.sender == owner,
"This function is restricted to the contract's owner"
);
_;
}
function setCompleted(uint completed) public restricted {
last_completed_migration = completed;
}
}

View File

@ -1,5 +0,0 @@
const Migrations = artifacts.require("Migrations");
module.exports = function (deployer) {
deployer.deploy(Migrations);
};