From c53d2b6f5ab04934a162dc41b0c918495cac54d1 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Thu, 18 Aug 2022 18:11:11 -0400 Subject: [PATCH] increase the default history_tx_cache_size --- hub/herald/env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/herald/env.py b/hub/herald/env.py index 687491e..aaf9cfd 100644 --- a/hub/herald/env.py +++ b/hub/herald/env.py @@ -61,7 +61,7 @@ class ServerEnv(Env): self.tx_cache_size = tx_cache_size if tx_cache_size is not None else self.integer( 'TX_CACHE_SIZE', 32768) self.history_tx_cache_size = history_tx_cache_size if history_tx_cache_size is not None else \ - self.integer('HISTORY_TX_CACHE_SIZE', 524288) + self.integer('HISTORY_TX_CACHE_SIZE', 4194304) @classmethod def contribute_to_arg_parser(cls, parser):