From 6e727543fe8de24fd9a17c8d18a7eb8f641adc0f Mon Sep 17 00:00:00 2001 From: Adibas03 Date: Sun, 6 May 2018 11:42:41 +0100 Subject: [PATCH] update deployer --- migrations/2_deploy_contracts.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/migrations/2_deploy_contracts.js b/migrations/2_deploy_contracts.js index dca7af8..d5d8f0e 100644 --- a/migrations/2_deploy_contracts.js +++ b/migrations/2_deploy_contracts.js @@ -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] ); };