From 185899aec5009a1fe1978fc0561754e2cbf57549 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Tue, 9 Feb 2021 14:14:54 +0530 Subject: [PATCH] pragma updated to support 0.8 --- libs/remix-tests/sol/tests.sol.ts | 2 +- libs/remix-tests/sol/tests_accounts.sol.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/remix-tests/sol/tests.sol.ts b/libs/remix-tests/sol/tests.sol.ts index 291705b9cc..84a8143510 100644 --- a/libs/remix-tests/sol/tests.sol.ts +++ b/libs/remix-tests/sol/tests.sol.ts @@ -1,6 +1,6 @@ module.exports = `// SPDX-License-Identifier: GPL-3.0 -pragma solidity >=0.4.22 <0.8.0; +pragma solidity >=0.4.22 <0.9.0; library Assert { diff --git a/libs/remix-tests/sol/tests_accounts.sol.ts b/libs/remix-tests/sol/tests_accounts.sol.ts index 1ab62b5e99..d97aae8f34 100644 --- a/libs/remix-tests/sol/tests_accounts.sol.ts +++ b/libs/remix-tests/sol/tests_accounts.sol.ts @@ -1,6 +1,6 @@ module.exports = `// SPDX-License-Identifier: GPL-3.0 -pragma solidity >=0.4.22 <0.8.0; +pragma solidity >=0.4.22 <0.9.0; library TestsAccounts { function getAccount(uint index) public returns (address) {