pyth-crosschain/ethereum/contracts/Migrations.sol

15 lines
408 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
// Needed for truffle migrate to work correctly.
// Simply stores the last completed migration.
contract Migrations is Ownable {
uint public last_completed_migration;
function setCompleted(uint completed) public onlyOwner {
last_completed_migration = completed;
}
}