Skip to content

Commit

Permalink
added installing solcx version
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC committed Sep 13, 2021
1 parent 35cbc98 commit d4a9ac7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions chronological-issues-from-video.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,13 @@ This file will list issues/updates by timestamp. If you have an issue that you d
- [2:37:05](https://youtu.be/M576WGiDBdQ?t=9425) Kovan vs Rinkeby
- Our `FundMe.sol` needs to be deployed to the *rinkeby* chain to work, but if you go to try the price feeds from the Chainlink docs using the remix link, that one has the *kovan* price feeds in it, so needs to be deployed to kovan.
- If you want to test the price feeds from the video using the Chainlink docs remix link, you'll need to follow the steps to [get kovan ETH](https://docs.chain.link/docs/link-token-contracts/#kovan).

## Lesson 4:
- [3:43:52](https://youtu.be/M576WGiDBdQ?t=13432) Installing solcx version 0.6.0
- In the video, we forgot to do 2 things in order to compile our solidity code:
- Import `install_solc`, so we need to change this line:
- `from solcx import compile_standard`
- To this line:
- `from solcx import compile_standard, install_solc`
- And then, we need to add a line right before we run the `compile_standard` code:
- `install_solc("0.6.0")`

0 comments on commit d4a9ac7

Please sign in to comment.