Skip to content

Commit

Permalink
update deployer
Browse files Browse the repository at this point in the history
  • Loading branch information
adibas03 committed May 6, 2018
1 parent 08a1aec commit 6e72754
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion migrations/2_deploy_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ var safeMath = artifacts.require('./safeMathContract.sol');
var SafeMath = artifacts.require('./SafeMath.sol');
var Owned = artifacts.require('./ownedContract.sol');
var Ownable = artifacts.require('./Ownable.sol');
var StandardToken = artifacts.require('./StandardToken.sol');

module.exports = function(deployer) {
deployer.deploy(SafeMath);
deployer.link(SafeMath,[safeMath] );
deployer.link(SafeMath,[safeMath,StandardToken] );
deployer.deploy(Ownable);
deployer.link(Ownable,[Owned] );
};

0 comments on commit 6e72754

Please sign in to comment.