Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/hardhat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ describe('Counter', () => {
})

describe('count down', async () => {
// 5 - this throw a error with solidity ^0.8.0
// 5 - this throws an error with solidity ^0.8.0
it('should fail', async () => {
await counter.countDown()
})
Expand Down Expand Up @@ -175,6 +175,6 @@ Original work done by [@RHLSTHRM](https://twitter.com/RHLSTHRM).
## Troubleshooting

Using the types generated by this plugin can lead to Hardhat failing to run. The reason is that the types are not
avialable for loading the config, and that's required to generate the types.
available for loading the config, and that's required to generate the types.

To workaround this issue, you can run `TS_NODE_TRANSPILE_ONLY=1 npx hardhat compile`.