aboutsummaryrefslogtreecommitdiffstats
path: root/docs/security-considerations.rst
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-07-08 01:53:57 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-07-08 01:53:57 +0800
commitab3531ffc36bf2bc9819c42f620415e062f13b5f (patch)
tree48c3bc44b8b62455fa911ba306ca03dcdd917d8a /docs/security-considerations.rst
parent811980afe6bc989473990281440e79aecf801472 (diff)
downloaddexon-solidity-ab3531ffc36bf2bc9819c42f620415e062f13b5f.tar.gz
dexon-solidity-ab3531ffc36bf2bc9819c42f620415e062f13b5f.tar.zst
dexon-solidity-ab3531ffc36bf2bc9819c42f620415e062f13b5f.zip
Incorporate corrections
Diffstat (limited to 'docs/security-considerations.rst')
-rw-r--r--docs/security-considerations.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/security-considerations.rst b/docs/security-considerations.rst
index 726b8a2a..ac24f5cb 100644
--- a/docs/security-considerations.rst
+++ b/docs/security-considerations.rst
@@ -129,7 +129,7 @@ Callstack Depth
===============
External function calls can fail any time because they exceed the maximum
-call stack of 1023. In such situations, Solidity throws an exception.
+call stack of 1024. In such situations, Solidity throws an exception.
Malicious actors might be able to force the call stack to a high value
before they interact with your contract.
@@ -185,7 +185,7 @@ because of the re-entrancy problem explained above.
Note that, also, calls to known contracts might in turn cause calls to
unknown contracts, so it is probably better to just always apply this pattern.
-Include a Fail-safe Mode
+Include a Fail-Safe Mode
========================
While making your system fully decentralised will remove any intermediary,