Skip to content

Commit

Permalink
fix: hardhat config incompleteness
Browse files Browse the repository at this point in the history
  • Loading branch information
noyyyy committed Oct 12, 2023
1 parent 6efb0a9 commit 25456ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/arcana/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ task('accounts', 'Prints the list of accounts', async (taskArgs, hre) => {

const accounts = process.env.ACCOUNTS ? process.env.ACCOUNTS.split(',') : [];
const deployer = process.env.DEPLOYER || '0x0000000000000000000000000000000000000000';
const prodDeployer = process.env.PROD_DEPLOYER!;
const prodDeployerKey = process.env.PRDO_DEPLOYER_KEY!;
const prodDeployer = process.env.PROD_DEPLOYER || '0x0000000000000000000000000000000000000000';
const prodDeployerKey = process.env.PRDO_DEPLOYER_KEY || '0x0000000000000000000000000000000000000000000000000000000000000000';

const config: HardhatUserConfig = {
solidity: {
Expand Down

0 comments on commit 25456ab

Please sign in to comment.