From 53a3052288dfd9eee34294504380e9ab7928abf5 Mon Sep 17 00:00:00 2001 From: Josh Francisco <71164900+Haruxe@users.noreply.github.com> Date: Sun, 24 Apr 2022 18:58:34 -0700 Subject: [PATCH] Update README to account for Solidity 0.8.0 https://github.com/crytic/not-so-smart-contracts/issues/40#issue-1139870557 closing this issue. The README now lets the reader know that this problem is only in older compiler versions. --- integer_overflow/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integer_overflow/README.md b/integer_overflow/README.md index 631acde..57e884d 100644 --- a/integer_overflow/README.md +++ b/integer_overflow/README.md @@ -1,6 +1,6 @@ # Integer Overflow -It is possible to cause `add` and `sub` to overflow (or underflow) on any type of integer in Solidity. +Prior to Solidity version 0.8.0, it is possible to cause `add` and `sub` to overflow (or underflow) any type of integer. ## Attack Scenarios