aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephenButtolph <stephen@avalabs.org>2020-09-11 00:09:28 -0400
committerStephenButtolph <stephen@avalabs.org>2020-09-11 00:09:28 -0400
commite79850702a6610df73a363a32f9c9bfd4fdfc513 (patch)
tree4e28854279a3430f6e471bf3e323491c1dbe5968
parent01aee7a46974915f535f8a22302028196edee209 (diff)
reduce block cache sizev0.2.15-rc.2
-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 7b3d380..073ebd0 100644
--- a/plugin/evm/vm.go
+++ b/plugin/evm/vm.go
@@ -67,7 +67,7 @@ const (
maxBlockTime = 1000 * time.Millisecond
batchSize = 250
maxUTXOsToFetch = 1024
- blockCacheSize = 1 << 17 // 131072
+ blockCacheSize = 1 << 10 // 1024
)
const (