diff options
| author | Doug <[email protected]> | 2016-12-20 19:25:24 -0800 |
|---|---|---|
| committer | Douglas Roark <[email protected]> | 2017-01-05 00:46:29 -0800 |
| commit | d5aa19813c32eff02d4b65ac9a4131f3eed04825 (patch) | |
| tree | a7c97ce84513d941ab73733cb3b3afd3a9da1bb0 /contrib/linearize/example-linearize.cfg | |
| parent | Merge #9107: Safer modify new coins (diff) | |
| download | discoin-d5aa19813c32eff02d4b65ac9a4131f3eed04825.tar.xz discoin-d5aa19813c32eff02d4b65ac9a4131f3eed04825.zip | |
Allow linearization scripts to support hash byte reversal
Currently, the linearization scripts require input hashes to be in one endian form. Add support for byte reversal.
Diffstat (limited to 'contrib/linearize/example-linearize.cfg')
| -rw-r--r-- | contrib/linearize/example-linearize.cfg | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/linearize/example-linearize.cfg b/contrib/linearize/example-linearize.cfg index 38da02e66..cccdd7921 100644 --- a/contrib/linearize/example-linearize.cfg +++ b/contrib/linearize/example-linearize.cfg @@ -23,7 +23,9 @@ input=/home/example/.bitcoin/blocks output_file=/home/example/Downloads/bootstrap.dat hashlist=hashlist.txt -split_year=1 # Maxmimum size in bytes of out-of-order blocks cache in memory out_of_order_cache_sz = 100000000 + +# Do we want the reverse the hash bytes coming from getblockhash? +rev_hash_bytes = False |