aboutsummaryrefslogtreecommitdiffstats
path: root/docs/frequently-asked-questions.rst
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-10-16 05:52:05 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-10-19 21:02:50 +0800
commitc6e7475f05643cbe65aefdd9f71d6396b1ea7a08 (patch)
tree5cc646773bf4d88a51fede84a9a4933aa45c1d68 /docs/frequently-asked-questions.rst
parentfcba4d927ced8410fdbcd8f9863741bf20e47ba8 (diff)
downloaddexon-solidity-c6e7475f05643cbe65aefdd9f71d6396b1ea7a08.tar
dexon-solidity-c6e7475f05643cbe65aefdd9f71d6396b1ea7a08.tar.gz
dexon-solidity-c6e7475f05643cbe65aefdd9f71d6396b1ea7a08.tar.bz2
dexon-solidity-c6e7475f05643cbe65aefdd9f71d6396b1ea7a08.tar.lz
dexon-solidity-c6e7475f05643cbe65aefdd9f71d6396b1ea7a08.tar.xz
dexon-solidity-c6e7475f05643cbe65aefdd9f71d6396b1ea7a08.tar.zst
dexon-solidity-c6e7475f05643cbe65aefdd9f71d6396b1ea7a08.zip
FAQ: remove create example (already explained elsewhere
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r--docs/frequently-asked-questions.rst10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index 353d8abc..c88c86ed 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -539,16 +539,6 @@ Use the constructor. Anything inside it will be executed when the contract is fi
See `replicator.sol <https://github.com/fivedogit/solidity-baby-steps/blob/master/contracts/50_replicator.sol>`_.
-Can a contract create another contract?
-=======================================
-
-Yes, see `replicator.sol <https://github.com/fivedogit/solidity-baby-steps/blob/master/contracts/50_replicator.sol>`_.
-
-Note that the full code of the created contract has to be included in the creator contract.
-This also means that cyclic creations are not possible (because the contract would have
-to contain its own code) - at least not in a general way.
-
-
How do you create 2-dimensional arrays?
=======================================