Skip to content

Commit f12b0ec

Browse files
committed
chore: downgrade solc
1 parent f2aa96a commit f12b0ec

6 files changed

+6
-6
lines changed

foundry.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ src = "src"
33
out = "out"
44
script = 'script'
55
libs = ["lib"]
6-
solc = '0.8.26'
6+
solc = '0.8.24'
77
optimizer = false
88

99
fs_permissions = [

script/DssBlow2Deploy.s.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
// You should have received a copy of the GNU Affero General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
16-
pragma solidity 0.8.26;
16+
pragma solidity 0.8.24;
1717

1818
import {Script} from "forge-std/Script.sol";
1919
import {stdJson} from "forge-std/StdJson.sol";

src/DssBlow2.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
// You should have received a copy of the GNU Affero General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
16-
pragma solidity 0.8.26;
16+
pragma solidity 0.8.24;
1717

1818
interface ERC20Like {
1919
function balanceOf(address) external returns (uint256);

src/DssBlow2.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
// You should have received a copy of the GNU Affero General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
16-
pragma solidity 0.8.26;
16+
pragma solidity 0.8.24;
1717

1818
import "dss-test/DssTest.sol";
1919
import "./DssBlow2.sol";

src/deployment/DssBlow2Deploy.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
// You should have received a copy of the GNU Affero General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
16-
pragma solidity 0.8.26;
16+
pragma solidity 0.8.24;
1717

1818
import {DssBlow2} from "src/DssBlow2.sol";
1919
import {DssBlow2Instance} from "./DssBlow2Instance.sol";

src/deployment/DssBlow2Instance.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
// You should have received a copy of the GNU Affero General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
16-
pragma solidity 0.8.26;
16+
pragma solidity 0.8.24;
1717

1818
struct DssBlow2Instance {
1919
address blow;

0 commit comments

Comments
 (0)