aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephenButtolph <stephen@avalabs.org>2020-08-13 02:34:53 -0400
committerStephenButtolph <stephen@avalabs.org>2020-08-13 02:34:53 -0400
commit0d2a35293b7aa49d143ce215591104aba1c89388 (patch)
treeb7b7a3136f01965851033d90830018890334ee9f
parent9616c7265c06952530674fdbc193c824e099c2c4 (diff)
yuge cache, all the cachev0.2.8-rc.6
-rw-r--r--plugin/evm/vm.go2
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 (