Update roles/apps/files/bitcoin/bin/btc_init

Added WALLETBROADCAST=0 default
This commit is contained in:
b0xxer 2024-05-18 16:41:05 -05:00
parent e48be42df1
commit e71fef338a

View File

@ -54,6 +54,7 @@ cat <<EOF > $HOME/.bitcoin/bitcoin.conf
# SEEDNODE2
# SEEDNODE3
# REINDEXCHAINSTATE
# WALLETBROADCAST
# network
# Choose what network to connect to (mutually exclusive choice)
@ -73,6 +74,8 @@ persistmempool=${PERSISTMEMPOOL:-1}
maxorphantx=${MAXORPHANTX:-50}
# Time in mins to ban bad peers
bantime=${BANTIME:-86400}
# Recommended to disable wallet broadcast to stop IP analytic attacks (https://stacker.news/items/543603)
walletbroadcast=${WALLETBROADCAST:-0}
# server
server=${SERVER:-1}