From 23803f30385a1aa7eac0be6187160c5ac457fc7f Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Thu, 12 Jul 2018 11:18:03 -0400 Subject: [PATCH] fix the indexOf instead by simulating what solc does --- lib/modules/deployment/contract_deployer.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/modules/deployment/contract_deployer.js b/lib/modules/deployment/contract_deployer.js index 73f14456..384ecf7a 100644 --- a/lib/modules/deployment/contract_deployer.js +++ b/lib/modules/deployment/contract_deployer.js @@ -209,9 +209,6 @@ class ContractDeployer { if (linkReference.length > 40) { return next(new Error(__("{{linkReference}} is too long, try reducing the path of the contract ({{filename}}) and/or its name {{contractName}}", {linkReference: linkReference, filename: filename, contractName: contractObj.className}))); } - if (contractCode.indexOf(linkReference) < 0) { - continue; - } let toReplace = linkReference + "_".repeat(40 - linkReference.length); if (deployedAddress === undefined) { let libraryName = contractObj.className;