From 8920b68394ca7bfee23ecf3eb174fbb8f808ba32 Mon Sep 17 00:00:00 2001 From: bhavik Date: Thu, 23 Dec 2021 00:43:39 +0530 Subject: [PATCH] removed gasPrice in hardhat-config --- hardhat.config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index af8ea557..c74d290f 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -43,7 +43,6 @@ function createConfig(network: string) { return { url: getNetworkUrl(network), accounts: !!PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : { mnemonic }, - gasPrice:100000000000 }; }