Skip to content

Commit

Permalink
fix accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
TateB committed Oct 22, 2024
1 parent a325c54 commit c639c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hardhat.config.cts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ let real_accounts = undefined
if (process.env.DEPLOYER_KEY) {
real_accounts = [
process.env.DEPLOYER_KEY,
process.env.OWNER_KEY || process.env.DEPLOYER_KEY,
...(process.env.OWNER_KEY ? [process.env.OWNER_KEY] : []),
]
}
const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY!
Expand Down Expand Up @@ -159,7 +159,7 @@ const config = {
default: 0,
},
owner: {
default: 1,
default: process.env.OWNER_KEY ? 1 : 0,
1: '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7',
},
},
Expand Down

0 comments on commit c639c25

Please sign in to comment.