Skip to content

Commit

Permalink
fix: license pragma
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhalliday committed Aug 26, 2024
1 parent 976f779 commit 291927f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion script/DeployTestToken.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.25;

import {TestToken} from "test/utils/TestToken.sol";
Expand Down
2 changes: 1 addition & 1 deletion script/DeployXStakeController.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.25;

import {XStakeController} from "src/XStaker.sol";
Expand Down
2 changes: 1 addition & 1 deletion script/DeployXStaker.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.25;

import {XStaker} from "src/XStaker.sol";
Expand Down
2 changes: 1 addition & 1 deletion script/RegisterXStaker.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.25;

import {XStakeController} from "src/XStaker.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/utils/TestToken.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.25;

import {ERC20} from "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
Expand Down

0 comments on commit 291927f

Please sign in to comment.