servo: bitcoind: update docs

This commit is contained in:
2025-08-07 06:30:37 +00:00
parent 2184c17677
commit 8b5284811d

View File

@@ -1,4 +1,5 @@
# as of 2023/12/02: complete blockchain is 530 GiB (on-disk size may be larger) # as of 2023/12/02: complete blockchain is 530 GiB (on-disk size may be larger)
# as of 2025/08/06: on-disk blockchain as reported by `du` is 732 GiB
# #
# ports: # ports:
# - 8333: for node-to-node communications # - 8333: for node-to-node communications
@@ -72,13 +73,18 @@ in
proxy=127.0.0.1:9050 proxy=127.0.0.1:9050
''; '';
extraCmdlineOptions = [ extraCmdlineOptions = [
# `man bitcoind` for options
# "-assumevalid=0" # to perform script validation on all blocks, instead of just the latest checkpoint published by bitcoin-core
# "-debug" # "-debug"
# "-debug=estimatefee" # "-debug=estimatefee"
# "-debug=leveldb"
# "-debug=http" # "-debug=http"
# "-debug=net" # "-debug=net"
"-debug=proxy" "-debug=proxy"
"-debug=rpc" "-debug=rpc"
# "-debug=validation" # "-debug=validation"
# "-reindex" # wipe chainstate, block index, other indices; rebuild from blk*.dat (takes 2.5hrs)
# "-reindex-chainstate" # wipe chainstate; rebuild from blk*.dat
]; ];
}; };