Move opcodes into bytecode/deployedBytecode

This commit is contained in:
Alex Beregszaszi 2017-03-29 22:21:33 +01:00
parent fefb3fad6f
commit 917175eedc

View File

@ -210,6 +210,8 @@ Output Description
bytecode: { bytecode: {
// The bytecode as a hex string. // The bytecode as a hex string.
object: "00fe", object: "00fe",
// Opcodes list (string)
opcodes: "",
// The source mapping as a string. See the source mapping definition. // The source mapping as a string. See the source mapping definition.
sourceMap: "", sourceMap: "",
// If given, this is an unlinked object. // If given, this is an unlinked object.
@ -222,11 +224,9 @@ Output Description
] ]
} }
} }
} },
// The same layout as above. // The same layout as above.
deployedBytecode: { }, deployedBytecode: { },
// Opcodes list (string)
opcodes: "",
// The list of function hashes // The list of function hashes
methodIdentifiers: { methodIdentifiers: {
"5c19a95c": "delegate(address)", "5c19a95c": "delegate(address)",