Remove visiblity of libraries in inherited contracts.

This commit is contained in:
Mathias Baumann
2020-07-09 16:38:29 +02:00
committed by chriseth
parent 9ef050af9a
commit 6b37f1c025
6 changed files with 40 additions and 8 deletions
+1
View File
@@ -18,5 +18,6 @@ This section gives detailed instructions on how to update prior code for every b
* Change ``now`` to ``block.timestamp``.
* Change types of right operand in shift operators to unsigned types. For example change ``x >> (256 - y)`` to
``x >> uint(256 - y)``.
* Repeat the ``using A for B`` statements in all derived contracts if needed.
* Remove the ``public`` keyword from every constructor.
* Remove the ``internal`` keyword from every constructor and add ``abstract`` to the contract (if not already present).