rename SizeBytes to TxsTotalBytes

and other small fixes after Zarko's review
This commit is contained in:
Anton Kaliaev
2019-02-05 19:23:27 +04:00
parent 8dfa464f05
commit 03aa40addd
5 changed files with 36 additions and 32 deletions
+7 -5
View File
@@ -183,14 +183,16 @@ recheck = true
broadcast = true
wal_dir = ""
# size of the mempool
# Maximum number of transactions in the mempool
size = 5000
# size of the cache (used to filter transactions we saw earlier)
cache_size = 10000
# Maximum size of the mempool in bytes
# This only accounts for raw transactions (e.g. given 1MB transactions and
# max_bytes=5MB, mempool will only accept 5 transactions).
max_bytes = 1073741824
# maximum size of all txs in the mempool in bytes
max_bytes = 1000000000
# Size of the cache (used to filter transactions we saw earlier) in transactions
cache_size = 10000
##### consensus configuration options #####
[consensus]