diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-12 23:48:47 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-24 23:43:55 +0800 |
commit | 4bd96d93824f15fbb8c6eafb5dd1a875b9705423 (patch) | |
tree | d54d189daa2030999cf42a30c58478a50ec24a0c | |
parent | c65735fc1950a2938f7dffa1352d4bf837e11f5c (diff) | |
download | dexon-solidity-4bd96d93824f15fbb8c6eafb5dd1a875b9705423.tar dexon-solidity-4bd96d93824f15fbb8c6eafb5dd1a875b9705423.tar.gz dexon-solidity-4bd96d93824f15fbb8c6eafb5dd1a875b9705423.tar.bz2 dexon-solidity-4bd96d93824f15fbb8c6eafb5dd1a875b9705423.tar.lz dexon-solidity-4bd96d93824f15fbb8c6eafb5dd1a875b9705423.tar.xz dexon-solidity-4bd96d93824f15fbb8c6eafb5dd1a875b9705423.tar.zst dexon-solidity-4bd96d93824f15fbb8c6eafb5dd1a875b9705423.zip |
Fix description about how blocks work
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index 9fda9592..65019e2b 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -236,7 +236,7 @@ Ethereum this is roughly every 17 seconds. As part of the "order selection mechanism" (which is called "mining") it may happen that blocks are reverted from time to time, but only at the "tip" of the chain. The more -blocks are reverted the less likely it is. So it might be that your transactions +blocks that are added on top, the less likely it is. So it might be that your transactions are reverted and even removed from the blockchain, but the longer you wait, the less likely it will be. |