Do not override bytecode when deploying deps lib

pull/7/head
yann300 6 years ago
parent de30c58ce6
commit 7d859f5504
  1. 5
      remix-lib/src/execution/txFormat.js

@ -229,6 +229,7 @@ module.exports = {
atAddress: function () {},
linkBytecodeStandard: function (contract, contracts, callback, callbackStep, callbackDeployLibrary) {
var contractBytecode = ''
asyncJS.eachOfSeries(contract.evm.bytecode.linkReferences, (libs, file, cbFile) => {
asyncJS.eachOfSeries(contract.evm.bytecode.linkReferences[file], (libRef, libName, cbLibDeployed) => {
var library = contracts[file][libName]
@ -241,7 +242,7 @@ module.exports = {
if (hexAddress.slice(0, 2) === '0x') {
hexAddress = hexAddress.slice(2)
}
contract.evm.bytecode.object = this.linkLibraryStandard(libName, hexAddress, contract)
contractBytecode = this.linkLibraryStandard(libName, hexAddress, contract)
cbLibDeployed()
}, callbackStep, callbackDeployLibrary)
} else {
@ -254,7 +255,7 @@ module.exports = {
if (error) {
callbackStep(error)
}
callback(error, contract.evm.bytecode.object)
callback(error, contractBytecode)
})
},

Loading…
Cancel
Save