diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-03-16 06:58:14 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-03-16 06:58:14 +0800 |
commit | a0d6ac63cca61e2916bbe74e2575d3fd48395467 (patch) | |
tree | 4f0ca8cffb4194849d15635e0adfac7cb59e0dca /docs/frequently-asked-questions.rst | |
parent | 0157b86ce655a8dd83f402039a4740a9b7d2eea6 (diff) | |
download | dexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.tar.gz dexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.tar.zst dexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.zip |
Replace references to browser-solidity with Remix
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r-- | docs/frequently-asked-questions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index 8a68ae5b..639eb83e 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -68,7 +68,7 @@ creator. Save it. Then ``selfdestruct(creator);`` to kill and return funds. Note that if you ``import "mortal"`` at the top of your contracts and declare ``contract SomeContract is mortal { ...`` and compile with a compiler that already -has it (which includes `browser-solidity <https://ethereum.github.io/browser-solidity/>`_), then +has it (which includes `Remix <https://remix.ethereum.org/>`_), then ``kill()`` is taken care of for you. Once a contract is "mortal", then you can ``contractname.kill.sendTransaction({from:eth.coinbase})``, just the same as my examples. |