diff options
author | Micah Zoltu <micah@zoltu.net> | 2017-05-13 13:13:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-13 13:13:45 +0800 |
commit | 071efc553be5d92c9cd649f92071ed13544da4f8 (patch) | |
tree | bfdc6bbee55d2b3adb9003de9800a42eb297a678 /docs/units-and-global-variables.rst | |
parent | 242e43188161d15d36d831652b03095690524c72 (diff) | |
download | dexon-solidity-071efc553be5d92c9cd649f92071ed13544da4f8.tar.gz dexon-solidity-071efc553be5d92c9cd649f92071ed13544da4f8.tar.zst dexon-solidity-071efc553be5d92c9cd649f92071ed13544da4f8.zip |
Improves clarity of block.timestamp
Diffstat (limited to 'docs/units-and-global-variables.rst')
-rw-r--r-- | docs/units-and-global-variables.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index 246cc564..779e3819 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -55,7 +55,7 @@ Block and Transaction Properties - ``block.difficulty`` (``uint``): current block difficulty - ``block.gaslimit`` (``uint``): current block gaslimit - ``block.number`` (``uint``): current block number -- ``block.timestamp`` (``uint``): current block timestamp +- ``block.timestamp`` (``uint``): current block timestamp as seconds since unix epoch - ``msg.data`` (``bytes``): complete calldata - ``msg.gas`` (``uint``): remaining gas - ``msg.sender`` (``address``): sender of the message (current call) |