diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-03-30 05:21:33 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-03-30 05:21:33 +0800 |
commit | 917175eedcd4a397cbac4c29eb8a45042a9cc10d (patch) | |
tree | 6bb52f7824c4f7253b9b40cd91c1a7dbd6c6bb3b /docs/using-the-compiler.rst | |
parent | fefb3fad6fa20b9c99dd987a7869c297b279032e (diff) | |
download | dexon-solidity-917175eedcd4a397cbac4c29eb8a45042a9cc10d.tar dexon-solidity-917175eedcd4a397cbac4c29eb8a45042a9cc10d.tar.gz dexon-solidity-917175eedcd4a397cbac4c29eb8a45042a9cc10d.tar.bz2 dexon-solidity-917175eedcd4a397cbac4c29eb8a45042a9cc10d.tar.lz dexon-solidity-917175eedcd4a397cbac4c29eb8a45042a9cc10d.tar.xz dexon-solidity-917175eedcd4a397cbac4c29eb8a45042a9cc10d.tar.zst dexon-solidity-917175eedcd4a397cbac4c29eb8a45042a9cc10d.zip |
Move opcodes into bytecode/deployedBytecode
Diffstat (limited to 'docs/using-the-compiler.rst')
-rw-r--r-- | docs/using-the-compiler.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index 08f18132..3b530a29 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -210,6 +210,8 @@ Output Description bytecode: { // The bytecode as a hex string. object: "00fe", + // Opcodes list (string) + opcodes: "", // The source mapping as a string. See the source mapping definition. sourceMap: "", // If given, this is an unlinked object. @@ -222,11 +224,9 @@ Output Description ] } } - } + }, // The same layout as above. deployedBytecode: { }, - // Opcodes list (string) - opcodes: "", // The list of function hashes methodIdentifiers: { "5c19a95c": "delegate(address)", |