Bug fixes scripts npm

This commit is contained in:
MrDev023 2018-02-01 12:06:56 +01:00
parent 3304c1a738
commit a4e84eff45
2 changed files with 25 additions and 0 deletions

View file

@ -1,5 +1,7 @@
var Migrations = artifacts.require("./Migrations.sol");
var HelloEthSalon = artifacts.require('./HelloEthSalon.sol');
module.exports = function(deployer) {
deployer.deploy(Migrations);
deployer.deploy(HelloEthSalon);
};