* doc requirements
* more docs * changed btc_init to include more features and set txindex to 1 * masked rpm-ostree-countme timer
This commit is contained in:
@@ -26,6 +26,12 @@ cat <<EOF > $HOME/.bitcoin/bitcoin.conf
|
||||
# MAINNET
|
||||
# TESTNET
|
||||
# REGTEST
|
||||
# MEMPOOLFULLRBF
|
||||
# MAXMEMPOOL
|
||||
# MEMPOOLEXPIRY
|
||||
# PERSISTMEMPOOL
|
||||
# MAXORPHANTX
|
||||
# BANTIME
|
||||
# SERVER
|
||||
# LISTEN
|
||||
# LISTENONION
|
||||
@@ -34,6 +40,7 @@ cat <<EOF > $HOME/.bitcoin/bitcoin.conf
|
||||
# PRUNE
|
||||
# DISABLEWALLET
|
||||
# PRINTCONSOLE
|
||||
# WHITELIST
|
||||
# RPCUSER
|
||||
# RPCPASSWORD
|
||||
# RPCCONNECT
|
||||
@@ -49,16 +56,30 @@ cat <<EOF > $HOME/.bitcoin/bitcoin.conf
|
||||
# REINDEXCHAINSTATE
|
||||
|
||||
# network
|
||||
# Choose what network to connect to (mutually exclusive choice)
|
||||
mainnet=${MAINNET:-1}
|
||||
testnet=${TESTNET:-0}
|
||||
regtest=${REGTEST:-0}
|
||||
regtest=${REGTEST:-0}
|
||||
# Allow all transactions to be replaced by RBF by default
|
||||
mempoolfullrbf=${MEMPOOLFULLRBF:-1}
|
||||
# Max size in MB for mempool memory reserve
|
||||
maxmempool=${MAXMEMPOOL:-256}
|
||||
# Max time in hours before old mempool items expire
|
||||
mempoolexpiry=${MEMPOOLEXPIRY:-336}
|
||||
blockfilterindex=${BLOCKFILTERINDEX:-1}
|
||||
# Save mempool to disk on shutdown
|
||||
persistmempool=${PERSISTMEMPOOL:-1}
|
||||
# Max num of orphan tx to be kept
|
||||
maxorphantx=${MAXORPHANTX:-50}
|
||||
# Time in mins to ban bad peers
|
||||
bantime=${BANTIME:-86400}
|
||||
|
||||
# server
|
||||
server=${SERVER:-1}
|
||||
listen=${LISTEN:-1}
|
||||
listenonion=${LISTENONION:-0}
|
||||
daemon=${DAEMON:-0}
|
||||
txindex=${TXINDEX:-0}
|
||||
txindex=${TXINDEX:-1}
|
||||
prune=${PRUNE:-0}
|
||||
disablewallet=${DISABLEWALLET:-1}
|
||||
printtoconsole=${PRINTTOCONSOLE:-1}
|
||||
@@ -70,10 +91,13 @@ rpccookiefile=.cookie
|
||||
#rpcconnect=${RPCCONNECT:-127.0.0.1}
|
||||
#rpcport=${RPCPORT:-8332}
|
||||
#rpcauth=${RPCAUTH:-xxx}
|
||||
whitelist=${WHITELIST:-127.0.0.1}
|
||||
|
||||
# performance
|
||||
dbcache=${DBCACHE:-2000}
|
||||
maxconnections=${MAXCONNECTIONS:-40}
|
||||
#Max cache size of db in mb
|
||||
dbcache=${DBCACHE:-2000}
|
||||
|
||||
maxconnections=${MAXCONNECTIONS:-75}
|
||||
maxuploadtarget=${MAXUPLOADTARGET:-5000}
|
||||
|
||||
# tor
|
||||
|
||||
Reference in New Issue
Block a user