mirror of https://github.com/embarklabs/embark.git
fix the indexOf instead by simulating what solc does
This commit is contained in:
parent
6908cf5cdc
commit
3d729b8a78
|
@ -184,9 +184,6 @@ class ContractDeployer {
|
||||||
if (linkReference.length > 40) {
|
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})));
|
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);
|
let toReplace = linkReference + "_".repeat(40 - linkReference.length);
|
||||||
if (deployedAddress === undefined) {
|
if (deployedAddress === undefined) {
|
||||||
let libraryName = contractObj.className;
|
let libraryName = contractObj.className;
|
||||||
|
|
Loading…
Reference in New Issue