Commit 82bc839c authored by yann300's avatar yann300

fix src map retrieval

parent a29aba71
...@@ -67,7 +67,7 @@ function getSourceMap (address, code, contracts) { ...@@ -67,7 +67,7 @@ function getSourceMap (address, code, contracts) {
var isCreation = helper.isContractCreation(address) var isCreation = helper.isContractCreation(address)
var byteProp = isCreation ? 'bytecode' : 'runtimeBytecode' var byteProp = isCreation ? 'bytecode' : 'runtimeBytecode'
for (var k in contracts) { for (var k in contracts) {
if ('0x' + contracts[k][byteProp] === code) { if (code.indexOf('0x' + contracts[k][byteProp]) === 0) {
return isCreation ? contracts[k].srcmap : srcmapRuntime(contracts[k]) return isCreation ? contracts[k].srcmap : srcmapRuntime(contracts[k])
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment