Skip to content

Commit

Permalink
chore: address reviewer's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
0xp3th1um committed Feb 5, 2025
1 parent f12b0ec commit e7ccbf7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions script/DssBlow2Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
pragma solidity 0.8.24;
pragma solidity ^0.8.24;

import {Script} from "forge-std/Script.sol";
import {stdJson} from "forge-std/StdJson.sol";
Expand Down Expand Up @@ -42,7 +42,7 @@ contract DssBlow2DeployScript is Script {

vm.stopBroadcast();

ScriptTools.exportContract(NAME, "dssBlow2Deploy", inst.blow);
ScriptTools.exportContract(NAME, "blow2", inst.blow);
ScriptTools.exportContract(NAME, "daiJoin", address(dss.daiJoin));
ScriptTools.exportContract(NAME, "usdsJoin", usdsJoin);
ScriptTools.exportContract(NAME, "vow", address(dss.vow));
Expand Down
2 changes: 1 addition & 1 deletion src/DssBlow2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
pragma solidity 0.8.24;
pragma solidity ^0.8.24;

interface ERC20Like {
function balanceOf(address) external returns (uint256);
Expand Down
2 changes: 1 addition & 1 deletion src/DssBlow2.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
pragma solidity 0.8.24;
pragma solidity ^0.8.24;

import "dss-test/DssTest.sol";
import "./DssBlow2.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/deployment/DssBlow2Deploy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
pragma solidity 0.8.24;
pragma solidity ^0.8.24;

import {DssBlow2} from "src/DssBlow2.sol";
import {DssBlow2Instance} from "./DssBlow2Instance.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/deployment/DssBlow2Instance.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
pragma solidity 0.8.24;
pragma solidity ^0.8.24;

struct DssBlow2Instance {
address blow;
Expand Down

0 comments on commit e7ccbf7

Please sign in to comment.