Skip to content

Commit 4d31719

Browse files
committed
Bumped solidity version to 0.8.24
1 parent 0ff0580 commit 4d31719

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
src = "src"
33
out = "out"
44
libs = ["lib"]
5-
solc_version = "0.8.22"
5+
solc_version = "0.8.24"
66
remappings = [
77
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
88
"forge-std/=lib/forge-std/src/",

src/SmartnodesCoordinator.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.22;
2+
pragma solidity ^0.8.24;
33

44
import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
55
import {ISmartnodesCore} from "./interfaces/ISmartnodesCore.sol";

src/SmartnodesCore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.22;
2+
pragma solidity ^0.8.24;
33

44
import {ISmartnodesCoordinator} from "./interfaces/ISmartnodesCoordinator.sol";
55
import {ISmartnodesERC20, PaymentAmounts} from "./interfaces/ISmartnodesERC20.sol";

src/SmartnodesDAO.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.22;
2+
pragma solidity ^0.8.24;
33

44
import {Governor} from "@openzeppelin/contracts/governance/Governor.sol";
55
import {GovernorCountingSimple} from "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol";

src/SmartnodesERC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.22;
2+
pragma solidity ^0.8.24;
33

44
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
55
import {ISmartnodesCore} from "./interfaces/ISmartnodesCore.sol";

test/BaseTest.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.22;
2+
pragma solidity ^0.8.24;
33

44
import {Test, console} from "forge-std/Test.sol";
55
import {SmartnodesERC20} from "../src/SmartnodesERC20.sol";

test/CoordinatorTest.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.22;
2+
pragma solidity ^0.8.24;
33

44
import {Test, console} from "forge-std/Test.sol";
55
import {SmartnodesCoordinator} from "../src/SmartnodesCoordinator.sol";

test/CoreTest.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.22;
2+
pragma solidity ^0.8.24;
33

44
import {BaseSmartnodesTest} from "./BaseTest.sol";
55
import {SmartnodesCore} from "../src/SmartnodesCore.sol";

test/DAOTest.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.22;
2+
pragma solidity ^0.8.24;
33

44
import {BaseSmartnodesTest} from "./BaseTest.sol";
55
import {SmartnodesDAO} from "../src/SmartnodesDAO.sol";

test/TokenTest.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.22;
2+
pragma solidity ^0.8.24;
33

44
import {console} from "forge-std/Test.sol";
55
import {SmartnodesERC20} from "../src/SmartnodesERC20.sol";

0 commit comments

Comments
 (0)