From 81a41327cacffe83cf6c33289458ae5e8beb8919 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 27 Oct 2023 11:35:41 +0200 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,