From b37c12ea3b6ec2b890f206985841affa0d13d5de Mon Sep 17 00:00:00 2001 From: Swaraj Mali <115332135+Swaraj07082@users.noreply.github.com> Date: Tue, 15 Aug 2023 22:54:45 +0530 Subject: [PATCH] Update testLibrary.sol Changed Import statement --- tutorial-04/testLibrary.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorial-04/testLibrary.sol b/tutorial-04/testLibrary.sol index 96208d1..8efa5b4 100644 --- a/tutorial-04/testLibrary.sol +++ b/tutorial-04/testLibrary.sol @@ -1,6 +1,6 @@ -pragma solidity ^0.4.0; +pragma solidity >=0.5.0 < 0.9.0 ; -import "browser/library.sol"; +import "./library.sol"; contract TestLibrary { using IntExtended for uint;