removed gasPrice in hardhat-config

This commit is contained in:
bhavik 2021-12-23 00:43:39 +05:30 committed by Ishan Jain
parent 25519fc9c4
commit 24e92595ce

View File

@ -50,7 +50,6 @@ function createConfig(network: string) {
return { return {
url: getNetworkUrl(network), url: getNetworkUrl(network),
accounts: !!PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : { mnemonic }, accounts: !!PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : { mnemonic },
gasPrice:100000000000
}; };
} }