docs: Correct blockmaxsize and blockprioritysize.

This commit is contained in:
hypernoob 2018-07-07 13:15:45 +08:00 committed by Dave Collins
parent dc64afca16
commit 029fc17e9c
2 changed files with 4 additions and 4 deletions

4
doc.go
View File

@ -108,9 +108,9 @@ Application Options:
--blockminsize= Mininum block size in bytes to be used when creating
a block
--blockmaxsize= Maximum block size in bytes to be used when creating
a block (750000)
a block (375000)
--blockprioritysize= Size in bytes for high-priority/low-fee transactions
when creating a block (50000)
when creating a block (20000)
--getworkkey= DEPRECATED -- Use the --miningaddr option instead
--nonaggressive Disable mining off of the parent block of the blockchain
if there aren't enough voters

View File

@ -311,7 +311,7 @@ const FileContents = `[Application Options]
; Specify the maximum block size in bytes to create. This value will be limited
; to the consensus limit if it is larger than this value.
; blockmaxsize=750000
; blockmaxsize=375000
; Specify the size in bytes of the high-priority/low-fee area when creating a
; block. Transactions which consist of large amounts, old inputs, and small
@ -319,7 +319,7 @@ const FileContents = `[Application Options]
; or free transactions age, they raise in priority thereby making them more
; likely to be included in this section of a new block. This value is limited
; by the blockmaxsize option and will be limited as needed.
; blockprioritysize=50000
; blockprioritysize=20000
; ------------------------------------------------------------------------------