aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTomasz Drwięga <tomusdrw@users.noreply.github.com>2018-10-09 14:58:05 +0800
committerGitHub <noreply@github.com>2018-10-09 14:58:05 +0800
commit88d10b37d726e7d29f6becd72558f2d332ca8d72 (patch)
treed459d8eb08eb079e854be073ad39b97f526d3c25 /docs
parent15e4a5fc300741e5ee74717dd473aafb59bf0308 (diff)
downloaddexon-solidity-88d10b37d726e7d29f6becd72558f2d332ca8d72.tar
dexon-solidity-88d10b37d726e7d29f6becd72558f2d332ca8d72.tar.gz
dexon-solidity-88d10b37d726e7d29f6becd72558f2d332ca8d72.tar.bz2
dexon-solidity-88d10b37d726e7d29f6becd72558f2d332ca8d72.tar.lz
dexon-solidity-88d10b37d726e7d29f6becd72558f2d332ca8d72.tar.xz
dexon-solidity-88d10b37d726e7d29f6becd72558f2d332ca8d72.tar.zst
dexon-solidity-88d10b37d726e7d29f6becd72558f2d332ca8d72.zip
Clarify contract creation transaction
The change clarifies how contracts are deployed. The docs state that it's a transaction sent to `0` address (which is incorrect), the PR changes that to emphasize that the recipient is not set.
Diffstat (limited to 'docs')
-rw-r--r--docs/introduction-to-smart-contracts.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst
index f5d5f89e..c8a45d30 100644
--- a/docs/introduction-to-smart-contracts.rst
+++ b/docs/introduction-to-smart-contracts.rst
@@ -332,14 +332,15 @@ Transactions
============
A transaction is a message that is sent from one account to another
-account (which might be the same or the special zero-account, see below).
+account (which might be the same or empty, see below).
It can include binary data (which is called "payload") and Ether.
If the target account contains code, that code is executed and
the payload is provided as input data.
-If the target account is the zero-account (the account with the
-address ``0``), the transaction creates a **new contract**.
+If the target account is not set (the transaction does not have
+a recipient or the recipient is set to ``null``), the transaction
+creates a **new contract**.
As already mentioned, the address of that contract is not
the zero address but an address derived from the sender and
its number of transactions sent (the "nonce"). The payload