From 24e92595cecf644655536eb843608e942d54f0e2 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 6158e1b5..8c10d28f 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -50,7 +50,6 @@ function createConfig(network: string) { return { url: getNetworkUrl(network), accounts: !!PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : { mnemonic }, - gasPrice:100000000000 }; }