aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/compiler.ts
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2018-02-15 05:54:04 +0800
committerAmir Bandeali <abandeali1@gmail.com>2018-02-16 02:13:06 +0800
commitaf333b1838628fa0f8d393b19818224c15427106 (patch)
tree177312c7eeca8686b4a9666860ba83c9acc2be7b /packages/deployer/src/compiler.ts
parentf62762bd0e5d3be443e412df1829c2d89ef4640e (diff)
downloaddexon-0x-contracts-af333b1838628fa0f8d393b19818224c15427106.tar
dexon-0x-contracts-af333b1838628fa0f8d393b19818224c15427106.tar.gz
dexon-0x-contracts-af333b1838628fa0f8d393b19818224c15427106.tar.bz2
dexon-0x-contracts-af333b1838628fa0f8d393b19818224c15427106.tar.lz
dexon-0x-contracts-af333b1838628fa0f8d393b19818224c15427106.tar.xz
dexon-0x-contracts-af333b1838628fa0f8d393b19818224c15427106.tar.zst
dexon-0x-contracts-af333b1838628fa0f8d393b19818224c15427106.zip
Fix checks, add contract list to compile script in package.json
Diffstat (limited to 'packages/deployer/src/compiler.ts')
-rw-r--r--packages/deployer/src/compiler.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/deployer/src/compiler.ts b/packages/deployer/src/compiler.ts
index 4e5518d0e..beeda1260 100644
--- a/packages/deployer/src/compiler.ts
+++ b/packages/deployer/src/compiler.ts
@@ -139,6 +139,7 @@ export class Compiler {
const contractName = path.basename(contractBaseName, SOLIDITY_FILE_EXTENSION);
const currentArtifactPath = `${this._artifactsDir}/${contractName}.json`;
const sourceHash = `0x${ethUtil.sha3(source).toString('hex')}`;
+ const isContractSpecified = this._contractsToCompile.has(ALL_CONTRACTS_IDENTIFIER) || this._contractsToCompile.has(contractName);
let currentArtifactString: string;
let currentArtifact: ContractArtifact;
@@ -156,9 +157,9 @@ export class Compiler {
(_.isUndefined(oldNetwork) ||
oldNetwork.keccak256 !== sourceHash ||
oldNetwork.optimizer_enabled !== this._optimizerEnabled) &&
- (this._contractsToCompile.has(ALL_CONTRACTS_IDENTIFIER) || this._contractsToCompile.has(contractName));
+ isContractSpecified;
} catch (err) {
- shouldCompile = true;
+ shouldCompile = isContractSpecified;
}
if (!shouldCompile) {