diff options
author | StephenButtolph <[email protected]> | 2020-08-13 02:34:53 -0400 |
---|---|---|
committer | StephenButtolph <[email protected]> | 2020-08-13 02:34:53 -0400 |
commit | 0d2a35293b7aa49d143ce215591104aba1c89388 (patch) | |
tree | b7b7a3136f01965851033d90830018890334ee9f /plugin/evm | |
parent | 9616c7265c06952530674fdbc193c824e099c2c4 (diff) |
yuge cache, all the cachev0.2.8-rc.6
Diffstat (limited to 'plugin/evm')
-rw-r--r-- | plugin/evm/vm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go index 7e9e205..c55bfe6 100644 --- a/plugin/evm/vm.go +++ b/plugin/evm/vm.go @@ -51,7 +51,7 @@ const ( minBlockTime = 250 * time.Millisecond maxBlockTime = 1000 * time.Millisecond batchSize = 250 - cacheSize = 1 << 15 // 32768 + cacheSize = 1 << 17 // 131072 ) const ( |