diff options
Diffstat (limited to 'docs/units-and-global-variables.rst')
-rw-r--r-- | docs/units-and-global-variables.rst | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index 8ad0da4f..141c4a3c 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -117,13 +117,10 @@ Contract Related ---------------- `this` (current contract's type): - the current contract, explicitly convertible to `address` - - - this.balance: The balance of the current account. - - this.send: Send ether to an address. + the current contract, explicitly convertible to :ref:`address` `selfdestruct(address)`: - destroy the current contract, sending its funds to the given address + destroy the current contract, sending its funds to the given :ref:`address` Furthermore, all functions of the current contract are callable directly including the current function. |