File tree Expand file tree Collapse file tree 4 files changed +13
-8
lines changed
program-analysis/echidna/exercises/exercise1 Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 2727 python-version : 3.8
2828 - name : Install dependencies
2929 run : |
30- sudo wget -O /usr/bin/solc https://github.com/ethereum/solidity/releases/download/v0.5.11/solc-static-linux
31- sudo chmod +x /usr/bin/solc
30+ pip install solc-select
31+ solc-select install 0.5.11
32+ solc-select use 0.5.11
3233 - name : Run Tests
3334 env :
3435 TEST_TYPE : ${{ matrix.type }}
Original file line number Diff line number Diff line change 1- // SPDX-License-Identifier: GPL-3.0
2- pragma solidity ^ 0.5.0 ;
1+ //SPDX-License-Identifier: AGPL-3.0-or-later
2+ pragma solidity < 0.8.0 ;
3+
4+ import "token.sol " ;
35
46import "./token.sol " ;
57
Original file line number Diff line number Diff line change 1- // SPDX-License-Identifier: GPL-3.0
2- pragma solidity ^ 0.5.0 ;
1+ //SPDX-License-Identifier: AGPL-3.0-or-later
2+ pragma solidity < 0.8.0 ;
3+
4+ import "token.sol " ;
35
46import "./token.sol " ;
57
Original file line number Diff line number Diff line change 1- // SPDX-License-Identifier: GPL -3.0
2- pragma solidity ^ 0.5 .0 ;
1+ //SPDX-License-Identifier: AGPL -3.0-or-later
2+ pragma solidity < 0.8 .0 ;
33
44contract Ownable {
55 address public owner = msg .sender ;
You can’t perform that action at this time.
0 commit comments