Set up codespell (#3643)

This commit is contained in:
Hadrien Croubois
2022-08-23 17:43:03 +02:00
committed by GitHub
parent f491e98d37
commit 24fc709533
7 changed files with 34 additions and 24 deletions

View File

@ -97,7 +97,7 @@ contract('ERC20FlashMint', function (accounts) {
const receiverInitialBalance = new BN(200000);
const flashFee = new BN(5000);
beforeEach('init reciever balance & set flash fee', async function () {
beforeEach('init receiver balance & set flash fee', async function () {
this.receiver = await ERC3156FlashBorrowerMock.new(true, true);
const receipt = await this.token.mint(this.receiver.address, receiverInitialBalance);
await expectEvent(receipt, 'Transfer', { from: ZERO_ADDRESS, to: this.receiver.address, value: receiverInitialBalance });