rename MaxBytes to MaxTxsTotalBytes

This commit is contained in:
Anton Kaliaev
2019-02-05 20:23:42 +04:00
parent 03aa40addd
commit fe8726ecf3
5 changed files with 20 additions and 20 deletions
+3 -3
View File
@@ -186,10 +186,10 @@ wal_dir = ""
# Maximum number of transactions in the mempool
size = 5000
# Maximum size of the mempool in bytes
# Limit the total size of all txs in the mempool.
# This only accounts for raw transactions (e.g. given 1MB transactions and
# max_bytes=5MB, mempool will only accept 5 transactions).
max_bytes = 1073741824
# max_txs_total_bytes=5MB, mempool will only accept 5 transactions).
max_txs_total_bytes = 1073741824
# Size of the cache (used to filter transactions we saw earlier) in transactions
cache_size = 10000