diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-01-23 02:39:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-23 02:39:16 +0800 |
commit | e5def2da3d9b6cffbff42e2c9e1941831d2fe5ea (patch) | |
tree | 3ec324015e8d97e9b7ca43cb4dcc3c46b1b3bf31 /docs/using-the-compiler.rst | |
parent | eba46a65fc55ab598210d2bc2e209809d59f6fbd (diff) | |
parent | 530b47a01b2fd84e39aa23514acd6db439493d40 (diff) | |
download | dexon-solidity-e5def2da3d9b6cffbff42e2c9e1941831d2fe5ea.tar.gz dexon-solidity-e5def2da3d9b6cffbff42e2c9e1941831d2fe5ea.tar.zst dexon-solidity-e5def2da3d9b6cffbff42e2c9e1941831d2fe5ea.zip |
Merge pull request #3417 from zhangsawyer/patch-2
Update using-the-compiler.rst
Diffstat (limited to 'docs/using-the-compiler.rst')
-rw-r--r-- | docs/using-the-compiler.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index f1f13b82..42cc807a 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -147,11 +147,11 @@ Input Description }, // Enable the abi and opcodes output of MyContract defined in file def. "def": { - "MyContract": [ "abi", "evm.opcodes" ] + "MyContract": [ "abi", "evm.bytecode.opcodes" ] }, // Enable the source map output of every single contract. "*": { - "*": [ "evm.sourceMap" ] + "*": [ "evm.bytecode.sourceMap" ] }, // Enable the legacy AST output of every single file. "*": { |