Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKurt committed Oct 30, 2023
1 parent 19a1a09 commit 63c9b40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import dotenv from "dotenv";

dotenv.config();

let deployPrivateKey = process.env.DEPLOYER_PRIVATE_KEY as string;
const deployPrivateKey = process.env.DEPLOYER_PRIVATE_KEY as string;
if (!deployPrivateKey) {
throw "No deployer private key set in .env";
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ContractFactory } from "ethers";
import hre, { ethers, run, upgrades } from "hardhat";

export async function deployMaster(_registryAddress?: string) {
export async function deployMaster() {
const networkName = hre.network.name;

console.log(`
Expand Down

0 comments on commit 63c9b40

Please sign in to comment.