From eb4c87eb4539a76fc0549459948a0b518405044a Mon Sep 17 00:00:00 2001 From: Dmitry Date: Mon, 30 Oct 2023 16:54:50 +0100 Subject: [PATCH] Pinning Solidity version to 0.8.21 --- core/contracts/Litmus.sol | 2 +- core/hardhat.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/contracts/Litmus.sol b/core/contracts/Litmus.sol index 42fb2bab7..1379f2628 100644 --- a/core/contracts/Litmus.sol +++ b/core/contracts/Litmus.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-only -pragma solidity ^0.8.9; +pragma solidity ^0.8.21; // Uncomment this line to use console.log // import "hardhat/console.sol"; diff --git a/core/hardhat.config.ts b/core/hardhat.config.ts index 687d555c4..64e14bce6 100644 --- a/core/hardhat.config.ts +++ b/core/hardhat.config.ts @@ -7,7 +7,7 @@ const config: HardhatUserConfig = { solidity: { compilers: [ { - version: "0.8.17", + version: "0.8.21", settings: { optimizer: { enabled: true,