aboutsummaryrefslogtreecommitdiffstats
path: root/docs/using-the-compiler.rst
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-02-03 05:35:57 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-02-09 07:41:48 +0800
commit9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf (patch)
treea606e7f8f968731809a68a8bbff965eb05aff5a4 /docs/using-the-compiler.rst
parenta3340e210e94c3e31cf26b65cc49e03f8ef444de (diff)
downloaddexon-solidity-9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf.tar
dexon-solidity-9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf.tar.gz
dexon-solidity-9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf.tar.bz2
dexon-solidity-9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf.tar.lz
dexon-solidity-9fc017d10b3da56f4e94b73bf9f9f6ec7d5345cf.tar.xz
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.rst5
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 }
+ ]
}
}
}