Bump HIST_MB default to 300MB

This commit is contained in:
Neil Booth 2016-11-16 06:39:39 +09:00
parent 728e3ca4ac
commit cc2db4a62c
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
250
300

View File

@ -27,7 +27,7 @@ class Env(LoggedClass):
self.coin = Coin.lookup_coin_class(coin_name, network)
self.db_dir = self.required('DB_DIRECTORY')
self.utxo_MB = self.integer('UTXO_MB', 1000)
self.hist_MB = self.integer('HIST_MB', 250)
self.hist_MB = self.integer('HIST_MB', 300)
self.host = self.default('HOST', 'localhost')
self.reorg_limit = self.integer('REORG_LIMIT', 200)
self.daemon_url = self.build_daemon_url()