Merge pull request #5490 from ethereum/fixBytecode

Fix bytecode report file.
This commit is contained in:
chriseth 2018-11-22 21:09:18 +01:00 committed by GitHub
commit c095440fb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,8 +82,8 @@ for (var optimize of [false, true])
{
for (var contractName in result['contracts'][filename])
{
console.log(contractName + ' ' + result['contracts'][filename][contractName].evm.bytecode.object)
console.log(contractName + ' ' + result['contracts'][filename][contractName].metadata)
console.log(filename + ':' + contractName + ' ' + result['contracts'][filename][contractName].evm.bytecode.object)
console.log(filename + ':' + contractName + ' ' + result['contracts'][filename][contractName].metadata)
}
}
}