diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-11-16 00:36:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-16 00:36:14 +0800 |
commit | 5e55b27e2881c3abaaae8a4f6f7691155b56876a (patch) | |
tree | 7d89a082869c894d813dd26182a1e3d908fd4d39 | |
parent | 08fec146bad05c4443e8073e38b2dfe7ff9c1649 (diff) | |
parent | 3121608d7cba6ddf342b2c40460a534d64e4ba09 (diff) | |
download | dexon-solidity-5e55b27e2881c3abaaae8a4f6f7691155b56876a.tar.gz dexon-solidity-5e55b27e2881c3abaaae8a4f6f7691155b56876a.tar.zst dexon-solidity-5e55b27e2881c3abaaae8a4f6f7691155b56876a.zip |
Merge pull request #3207 from ethereum/chriseth-patch-2
Remove obsolote statement about msg.sender and library calls.
-rw-r--r-- | docs/units-and-global-variables.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index 7af97376..8261bdde 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -85,11 +85,6 @@ Block and Transaction Properties consecutive blocks in the canonical chain. .. note:: - If you want to implement access restrictions in library functions using - ``msg.sender``, you have to manually supply the value of - ``msg.sender`` as an argument. - -.. note:: The block hashes are not available for all blocks for scalability reasons. You can only access the hashes of the most recent 256 blocks, all other values will be zero. |