Skip to content

Commit

Permalink
reduced bsc node cache
Browse files Browse the repository at this point in the history
  • Loading branch information
feshchenkod committed Sep 30, 2022
1 parent 30f3705 commit c703f98
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bsc/bsc.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# BSC node

## Requirements for Ethereum network
* memory: 48Gb
* memory: 36b
* disk: 3Tb SSD (require periodically prune state) - the size increases quickly, so you need to periodically check the remaining space.

## Installation
Expand Down
2 changes: 1 addition & 1 deletion bsc/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ TrieTimeout = 100000000000
EnablePreimageRecording = false
EWASMInterpreter = ""
EVMInterpreter = ""
DatabaseCache = 8192
DatabaseCache = 4096
DatabaseFreezer = ""

[Eth.Miner]
Expand Down
2 changes: 1 addition & 1 deletion bsc/docker-compose.no-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ services:
- --txpool.locals
- "${TX_LOCAL_ADDR}"
- --cache
- "20480"
- "16394"
restart: always
stop_grace_period: 4m
stop_signal: SIGINT
Expand Down
2 changes: 1 addition & 1 deletion bsc/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ services:
- --txpool.locals
- "${TX_LOCAL_ADDR}"
- --cache
- "20480"
- "16384"
restart: always
stop_grace_period: 4m
stop_signal: SIGINT
Expand Down

0 comments on commit c703f98

Please sign in to comment.