Improved wording in documentation

This commit is contained in:
Harikrishnan Mulackal 2021-02-08 14:21:37 +01:00 committed by GitHub
parent 9a5a4dfc6c
commit 47d5939dbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,7 +185,7 @@ Call Stack Depth
================
External function calls can fail any time because they exceed the maximum
call stack of 1024. In such situations, Solidity throws an exception.
call stack size limit 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. Note that, since [Tangerine Whistle](https://eips.ethereum.org/EIPS/eip-608) hardfork, the [63/64 rule](https://eips.ethereum.org/EIPS/eip-150) makes call stack depth attack impractical. Also note that the call stack and the expression stack are unrelated, even though both have a size limit of 1024 stack slots.