mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 01:23:51 +00:00
add constracts/Migrations
This commit is contained in:
parent
6d42aa5239
commit
147f9f1e09
19
sol/contracts/Migrations.sol
Normal file
19
sol/contracts/Migrations.sol
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
pragma solidity >=0.4.22 <0.9.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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user