From c5d34fc94eb3a8ce10c80d9a83e0e479d2dd654c Mon Sep 17 00:00:00 2001 From: gary rong Date: Mon, 8 Oct 2018 21:52:23 +0800 Subject: les, light: reduce les testing stress (#17867) --- light/postprocess.go | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'light') diff --git a/light/postprocess.go b/light/postprocess.go index 2f8cb73ab..1cfd7535e 100644 --- a/light/postprocess.go +++ b/light/postprocess.go @@ -84,23 +84,23 @@ var ( } // TestServerIndexerConfig wraps a set of configs as a test indexer config for server side. TestServerIndexerConfig = &IndexerConfig{ - ChtSize: 256, - PairChtSize: 2048, - ChtConfirms: 16, - BloomSize: 256, - BloomConfirms: 16, - BloomTrieSize: 2048, - BloomTrieConfirms: 16, + ChtSize: 64, + PairChtSize: 512, + ChtConfirms: 4, + BloomSize: 64, + BloomConfirms: 4, + BloomTrieSize: 512, + BloomTrieConfirms: 4, } // TestClientIndexerConfig wraps a set of configs as a test indexer config for client side. TestClientIndexerConfig = &IndexerConfig{ - ChtSize: 2048, - PairChtSize: 256, - ChtConfirms: 128, - BloomSize: 2048, - BloomConfirms: 128, - BloomTrieSize: 2048, - BloomTrieConfirms: 128, + ChtSize: 512, + PairChtSize: 64, + ChtConfirms: 32, + BloomSize: 512, + BloomConfirms: 32, + BloomTrieSize: 512, + BloomTrieConfirms: 32, } ) -- cgit v1.2.3