Skip to content

Commit

Permalink
Updated to solidity 0.8.24
Browse files Browse the repository at this point in the history
  • Loading branch information
asselstine committed Mar 1, 2024
1 parent 499bef4 commit f14a0da
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[profile.default]
src = 'src'
out = 'out'
solc = "0.8.19"
solc = "0.8.24"
libs = ['lib']

# See more config options https://github.com/foundry-rs/foundry/tree/master/config
2 changes: 1 addition & 1 deletion src/Claimer.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity ^0.8.24;

import { SD59x18 } from "prb-math/SD59x18.sol";
import { UD2x18 } from "prb-math/UD2x18.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/ClaimerFactory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity ^0.8.24;

import { PrizePool } from "pt-v5-prize-pool/PrizePool.sol";
import { Claimer } from "./Claimer.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/LinearVRGDALib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity ^0.8.24;

import { UD2x18, ud2x18 } from "prb-math/UD2x18.sol";
import { SD59x18, convert } from "prb-math/SD59x18.sol";
Expand Down

0 comments on commit f14a0da

Please sign in to comment.