Merge pull request #5801 from ethereum/idio-contract

[DOCS] Mention that there is no Cron in Ethereum
This commit is contained in:
Chris Chinchilla 2019-01-17 10:15:48 +02:00 committed by GitHub
commit 6841d78896
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 contain persistent data in state variables and functions that can modify these
variables. Calling a function on a different contract (instance) will perform 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 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 .. include:: contracts/creating-contracts.rst