Merge pull request #10010 from ethereum/develop

Merge develop into breaking.
This commit is contained in:
chriseth
2020-10-12 15:33:34 +02:00
committed by GitHub
62 changed files with 1006 additions and 240 deletions
-1
View File
@@ -519,7 +519,6 @@ An ``assert``-style exception is generated in the following situations:
#. If you access an array or an array slice at a too large or negative index (i.e. ``x[i]`` where ``i >= x.length`` or ``i < 0``).
#. If you access a fixed-length ``bytesN`` at a too large or negative index.
#. If you divide or modulo by zero (e.g. ``5 / 0`` or ``23 % 0``).
#. If you shift by a negative amount.
#. If you convert a value too big or negative into an enum type.
#. If you call a zero-initialized variable of internal function type.
#. If you call ``assert`` with an argument that evaluates to false.