Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
janoside committed Aug 11, 2019
1 parent e23701d commit 604af09
Show file tree
Hide file tree
Showing 3 changed files with 725 additions and 429 deletions.
6 changes: 3 additions & 3 deletions app/api/coreApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ if (config.noInmemoryRpcCache) {
txCache = noopCache;

} else {
miscCache = createMemoryLruCache(LRU(50));
blockCache = createMemoryLruCache(LRU(50));
txCache = createMemoryLruCache(LRU(200));
miscCache = createMemoryLruCache(new LRU(50));
blockCache = createMemoryLruCache(new LRU(50));
txCache = createMemoryLruCache(new LRU(200));
}

if (redisCache.active) {
Expand Down
Loading

0 comments on commit 604af09

Please sign in to comment.