Skip to content

Commit

Permalink
timeout increase and possible workaround for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
abarbatei committed Oct 6, 2023
1 parent 0d38541 commit e4ea6db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions packages/avatar/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ import {HardhatUserConfig} from 'hardhat/config';
import '@openzeppelin/hardhat-upgrades';

const config: HardhatUserConfig = {
// solidity compiler version may be updated for new packages as required
// to ensure packages use up-to-date dependencies
mocha: {
timeout: 0,
...(!process.env.CI ? {} : {invert: true, grep: '@skip-on-ci'}),
},
solidity: {
compilers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async function createSetupWave(contract: AvatarCollection) {
waveMaxTokensToBuy: number,
waveSingleTokenPrice: string
) => {
const {raffleSignWallet} = await getTestingAccounts();
const {raffleSignWallet, deployer} = await getTestingAccounts();

await contract.setSignAddress(raffleSignWallet);

Expand Down

0 comments on commit e4ea6db

Please sign in to comment.