Skip to content

Commit 2e8e13f

Browse files
authored
Merge pull request #265 from crytic/fix-prev-merge-conflicts
Fix previous merge conflicts in exercises
2 parents 6a1c928 + 418c2ca commit 2e8e13f

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

program-analysis/echidna/exercises/exercise1/solution.sol

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
//SPDX-License-Identifier: AGPL-3.0-or-later
2-
pragma solidity <0.8.0;
3-
4-
import "token.sol";
1+
// SPDX-License-Identifier: AGPL-3.0
2+
pragma solidity ^0.5.0;
53

64
import "./token.sol";
75

program-analysis/echidna/exercises/exercise1/template.sol

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
//SPDX-License-Identifier: AGPL-3.0-or-later
2-
pragma solidity <0.8.0;
3-
4-
import "token.sol";
1+
// SPDX-License-Identifier: AGPL-3.0
2+
pragma solidity ^0.5.0;
53

64
import "./token.sol";
75

program-analysis/echidna/exercises/exercise1/token.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//SPDX-License-Identifier: AGPL-3.0-or-later
2-
pragma solidity <0.8.0;
1+
// SPDX-License-Identifier: AGPL-3.0
2+
pragma solidity ^0.5.0;
33

44
contract Ownable {
55
address public owner = msg.sender;

0 commit comments

Comments
 (0)