diff options
Diffstat (limited to 'contrib/linearize/example-linearize.cfg')
| -rw-r--r-- | contrib/linearize/example-linearize.cfg | 39 |
1 files changed, 26 insertions, 13 deletions
diff --git a/contrib/linearize/example-linearize.cfg b/contrib/linearize/example-linearize.cfg index d57d42c01..2cc910edf 100644 --- a/contrib/linearize/example-linearize.cfg +++ b/contrib/linearize/example-linearize.cfg @@ -1,29 +1,42 @@ - -# dogecoind RPC settings (linearize-hashes) +# bitcoind RPC settings (linearize-hashes) rpcuser=someuser rpcpassword=somepassword host=127.0.0.1 -port=22555 -#port=44555 +port=8332 +#port=18332 # bootstrap.dat hashlist settings (linearize-hashes) -max_height=845000 +max_height=313000 # bootstrap.dat input/output settings (linearize-data) # mainnet -netmagic=c0c0c0c0 -genesis=1a91e3dace36e2be3bf030a65679fe821aa1d6ef92e7c9902eb318182c355691 -input=/home/example/.dogecoin/blocks +netmagic=f9beb4d9 +genesis=000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f +input=/home/example/.bitcoin/blocks # testnet -#netmagic=fcc1b7dc -#genesis=bb0a78264637406b6360aad926284d544d7049f45189db5664f3c4d07350559e -#input=/home/example/.dogecoin/testnet3/blocks +#netmagic=0b110907 +#genesis=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943 +#input=/home/example/.bitcoin/testnet3/blocks +# "output" option causes blockchain files to be written to the given location, +# with "output_file" ignored. If not used, "output_file" is used instead. +# output=/home/example/blockchain_directory 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 +# Maximum 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 + +# On a new month, do we want to set the access and modify times of the new +# blockchain file? +file_timestamp = 0 +# Do we want to split the blockchain files given a new month or specific height? +split_timestamp = 0 + +# Do we want debug printouts? +debug_output = False |