You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there is no local wallet activity, we can disable the txpool journal:
--txpool.journal "" # Disk journal for local transaction to survive node restarts (default: "transactions.rlp")
If there is sufficient available memory, increasing the cache can speed up the sync:
--cache 2048 # Megabytes of memory allocated to internal caching (default: 1024)
Other things that can be bumped up for perf:
--txpool.accountslots 32 # Minimum number of executable transaction slots guaranteed per account (default: 16)
--txpool.globalslots 8192 # Maximum number of executable transaction slots for all accounts (default: 4096)
--txpool.accountqueue 128 # Maximum number of non-executable transaction slots permitted per account (default: 64)
--txpool.globalqueue 2048 # Maximum number of non-executable transaction slots for all accounts (default: 1024)
The text was updated successfully, but these errors were encountered:
Some handy geth flags to keep in mind:
If there is no local wallet activity, we can disable the txpool journal:
If there is sufficient available memory, increasing the cache can speed up the sync:
Other things that can be bumped up for perf:
The text was updated successfully, but these errors were encountered: