diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-06-04 15:47:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-04 15:47:43 +0800 |
commit | 143c4341d8a2231deade6d7341c668d609bd3486 (patch) | |
tree | dedba70251f89989fbdd1fdc91f0c9348af551e3 /eth/config.go | |
parent | 3f33a7c8ceeefd769a68bbcc2ed3e4ce74ddaef8 (diff) | |
download | dexon-143c4341d8a2231deade6d7341c668d609bd3486.tar.gz dexon-143c4341d8a2231deade6d7341c668d609bd3486.tar.zst dexon-143c4341d8a2231deade6d7341c668d609bd3486.zip |
core, eth, trie: streaming GC for the trie cache (#16810)
* core, eth, trie: streaming GC for the trie cache
* trie: track memcache statistics
Diffstat (limited to 'eth/config.go')
-rw-r--r-- | eth/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/config.go b/eth/config.go index dd7f42c7d..426d2bf1e 100644 --- a/eth/config.go +++ b/eth/config.go @@ -47,7 +47,7 @@ var DefaultConfig = Config{ LightPeers: 100, DatabaseCache: 768, TrieCache: 256, - TrieTimeout: 5 * time.Minute, + TrieTimeout: 60 * time.Minute, GasPrice: big.NewInt(18 * params.Shannon), TxPool: core.DefaultTxPoolConfig, |