smart-contract/migrations/2_contract_migrations.js

6 lines
136 B
JavaScript
Raw Normal View History

2019-03-11 12:30:45 +00:00
const ownableFactory = artifacts.require('Ownable.sol')
module.exports = async deployer => {
await deployer.deploy(ownableFactory)
}