From 8258a4d7d11270acc5f6b1a9067c373f20763174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Oliveira?= Date: Thu, 19 May 2022 21:42:38 +0100 Subject: [PATCH] fix: remove ropsten as eth chain --- lib/plugins/wallet/geth/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/wallet/geth/base.js b/lib/plugins/wallet/geth/base.js index 8720808d..2d9dded8 100644 --- a/lib/plugins/wallet/geth/base.js +++ b/lib/plugins/wallet/geth/base.js @@ -114,7 +114,7 @@ function generateTx (_toAddress, wallet, amount, includesFee, cryptoCode) { if (isErc20Token) txTemplate.data = contractData - const common = new Common({ chain: Chain.Ropsten, hardfork: Hardfork.London }) + const common = new Common({ chain: Chain.Mainnet, hardfork: Hardfork.London }) const promises = [ pify(web3.eth.estimateGas)(txTemplate),