Skip to content

Commit 3436ce6

Browse files
committed
feat: upgrade to 0.8.24
1 parent 5081255 commit 3436ce6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ btp = "${BTP_RPC_URL}"
2121
test = "test"
2222
out = "out"
2323
libs = ["lib"]
24-
solc = "0.8.19"
24+
solc = "0.8.24"
2525
optimizer = true
2626
optimizer_runs = 10_000
2727
gas_reports = ["*"]

script/Counter.s.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.19;
2+
pragma solidity 0.8.24;
33

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

src/Counter.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.19;
2+
pragma solidity 0.8.24;
33

44
contract Counter {
55
uint256 public number;

test/Counter.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.19;
2+
pragma solidity 0.8.24;
33

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

0 commit comments

Comments
 (0)