From fad2d4ac017f21d4d2dfe4a2b8c905cd38c61073 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 20 May 2016 12:52:32 +0200 Subject: Update links to browser-solidity. --- docs/frequently-asked-questions.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/frequently-asked-questions.rst') diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index a081fc16..e42ca1c5 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -30,7 +30,7 @@ there should be a `test contract `_. +Probably the fastest way is the `online compiler `_. You can also use the `solc` binary which comes with cpp-ethereum to compile contracts or an emerging option is to use Mix, the IDE. @@ -96,7 +96,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 `_), then +has it (which includes `browser-solidity `_), 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. -- cgit