diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-03 05:35:57 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-09 07:41:48 +0800 |
commit | 9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf (patch) | |
tree | a606e7f8f968731809a68a8bbff965eb05aff5a4 /docs/using-the-compiler.rst | |
parent | a3340e210e94c3e31cf26b65cc49e03f8ef444de (diff) | |
download | dexon-solidity-9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf.tar.gz dexon-solidity-9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf.tar.zst dexon-solidity-9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf.zip |
Support linkReferences with length specified
Diffstat (limited to 'docs/using-the-compiler.rst')
-rw-r--r-- | docs/using-the-compiler.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index 67b3f32c..ed7f0856 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -212,7 +212,10 @@ Output Description linkReferences: { "libraryFile.sol": { // Byte offsets into the bytecode. Linking replaces the 20 bytes located there. - "Library1": [1, 200, 80] + "Library1": [ + { start: 0, length: 20 }, + { start: 200, length: 20 } + ] } } } |