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
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ As opposed to the first unit test, we will the [**Revert** Chai Matcher](https:/

<CodeGroup>
```javascript javascript
let withdrawAmount = ethers.utils.parseUnits("1", "ether");
let withdrawAmount = ethers.parseUnits("1", "ether");
```
</CodeGroup>

Expand Down Expand Up @@ -255,7 +255,7 @@ Go ahead and change the value to be less than .1 ETH and see the terminal get an

const [owner] = await ethers.getSigners();

let withdrawAmount = ethers.utils.parseUnits('1', 'ether');
let withdrawAmount = ethers.parseUnits('1', 'ether');

return { faucet, owner, withdrawAmount };
}
Expand Down