From 060476598d29ba30bd48ad7e42db290c3235e088 Mon Sep 17 00:00:00 2001 From: boqdan <304771+bowd@users.noreply.github.com> Date: Thu, 18 May 2023 06:17:30 +0100 Subject: [PATCH] chore: bump solidity version due to `virtual` usage #48 marked the fail function as virtual but this isn't supported in Solidity 0.5 --- src/test.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test.sol b/src/test.sol index 2bf3375..b283c1b 100644 --- a/src/test.sol +++ b/src/test.sol @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -pragma solidity >=0.5.0; +pragma solidity >=0.6.0; contract DSTest { event log (string);