aboutsummaryrefslogtreecommitdiffstats
path: root/docs/frequently-asked-questions.rst
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-20 19:44:12 +0800
committerGitHub <noreply@github.com>2018-07-20 19:44:12 +0800
commit9697b5886eac6b4473edd2b883002a2c1242486b (patch)
treee5240337e3cf55e85ba0554b78579a1dd66bee92 /docs/frequently-asked-questions.rst
parentd3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b (diff)
parent1aff0407998e8e1a28fa7916257defb17e5360aa (diff)
downloaddexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.tar.gz
dexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.tar.zst
dexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.zip
Merge pull request #4520 from ethereum/faq-reorg-index-tools
Move note on decompiling
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r--docs/frequently-asked-questions.rst15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index 0b68d4fb..cb46dea6 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -25,21 +25,6 @@ What is the transaction "payload"?
This is just the bytecode "data" sent along with the request.
-Is there a decompiler available?
-================================
-
-There is no exact decompiler to Solidity, but
-`Porosity <https://github.com/comaeio/porosity>`_ is close.
-Because some information like variable names, comments, and
-source code formatting is lost in the compilation process,
-it is not possible to completely recover the original source code.
-
-Bytecode can be disassembled to opcodes, a service that is provided by
-several blockchain explorers.
-
-Contracts on the blockchain should have their original source
-code published if they are to be used by third parties.
-
Create a contract that can be killed and return funds
=====================================================