diff options
author | Chris Chinchilla <chriswhward@gmail.com> | 2019-01-17 16:15:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-17 16:15:48 +0800 |
commit | 6841d78896b96fddb29be4acd49a27b5b3594374 (patch) | |
tree | 7c7a422aa37e520be8235ff9baed1e2233eb2eca | |
parent | 49f74a7bc1b7d8e814395168bc85e4a141da3ac4 (diff) | |
parent | 131e23100cab1cb3d6a69ec09d8d25aab35861f9 (diff) | |
download | dexon-solidity-6841d78896b96fddb29be4acd49a27b5b3594374.tar.gz dexon-solidity-6841d78896b96fddb29be4acd49a27b5b3594374.tar.zst dexon-solidity-6841d78896b96fddb29be4acd49a27b5b3594374.zip |
Merge pull request #5801 from ethereum/idio-contract
[DOCS] Mention that there is no Cron in Ethereum
-rw-r--r-- | docs/contracts.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 646e4cdc..5bab6e78 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -10,7 +10,8 @@ Contracts in Solidity are similar to classes in object-oriented languages. They contain persistent data in state variables and functions that can modify these variables. Calling a function on a different contract (instance) will perform an EVM function call and thus switch the context such that state variables are -inaccessible. +inaccessible. A contract and its functions need to be called for anything to happen. +There is no "cron" concept in Ethereum to call a function at a particular event automatically. .. include:: contracts/creating-contracts.rst |