diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-10-16 05:56:52 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2016-10-19 21:02:50 +0800 |
commit | f8795afc707b51e48939b86504ec84a41f464dc7 (patch) | |
tree | 3ff40330ab3183382d924135670cd995a20c9276 /docs | |
parent | 607f82ce9e9e8ec34f2c042d31bda869368e889b (diff) | |
download | dexon-solidity-f8795afc707b51e48939b86504ec84a41f464dc7.tar dexon-solidity-f8795afc707b51e48939b86504ec84a41f464dc7.tar.gz dexon-solidity-f8795afc707b51e48939b86504ec84a41f464dc7.tar.bz2 dexon-solidity-f8795afc707b51e48939b86504ec84a41f464dc7.tar.lz dexon-solidity-f8795afc707b51e48939b86504ec84a41f464dc7.tar.xz dexon-solidity-f8795afc707b51e48939b86504ec84a41f464dc7.tar.zst dexon-solidity-f8795afc707b51e48939b86504ec84a41f464dc7.zip |
Mention why Homestead was different for libraries
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index e2fdf3f3..2fa161d8 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -997,7 +997,7 @@ are all compiled as calls (``DELEGATECALL``) to an external contract/library. If you use libraries, take care that an actual external function call is performed. ``msg.sender``, ``msg.value`` and ``this`` will retain their values -in this call, though (prior to Homestead, ``msg.sender`` and +in this call, though (prior to Homestead, because of the use of `CALLCODE`, ``msg.sender`` and ``msg.value`` changed, though). The following example shows how to use memory types and |