From a7101b3ca505fd51c970a4889b55b7c0b33c9a2a Mon Sep 17 00:00:00 2001 From: Jakub Matys Date: Tue, 31 Jul 2018 09:27:32 +0200 Subject: [PATCH] Fixed Ethereum config --- configs/coins/ethereum.json | 4 ++++ configs/coins/ethereum_testnet_ropsten.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/configs/coins/ethereum.json b/configs/coins/ethereum.json index 3c2b4c7b..98f0b3e2 100644 --- a/configs/coins/ethereum.json +++ b/configs/coins/ethereum.json @@ -41,6 +41,10 @@ "explorer_url": "https://etherscan.io/", "additional_params": "", "block_chain": { + "parse": true, + "mempool_workers": 8, + "mempool_sub_workers": 2, + "block_addresses_to_keep": 300, "additional_params": {} } }, diff --git a/configs/coins/ethereum_testnet_ropsten.json b/configs/coins/ethereum_testnet_ropsten.json index 63618c67..6b3637c9 100644 --- a/configs/coins/ethereum_testnet_ropsten.json +++ b/configs/coins/ethereum_testnet_ropsten.json @@ -41,6 +41,10 @@ "explorer_url": "https://ropsten.etherscan.io/", "additional_params": "", "block_chain": { + "parse": true, + "mempool_workers": 8, + "mempool_sub_workers": 2, + "block_addresses_to_keep": 300, "additional_params": {} } },