Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lnd.conf and lnd.check.sh template adjustments #4432

Merged
merged 4 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion home.admin/BlitzTUI/blitztui/memo.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@
"picky",
"pied",
"piggy",
"pilar",
"pillar",
"pink",
"plain",
"plane",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ piano
picky
pied
piggy
pilar
pillar
pink
plain
plane
Expand Down
2 changes: 1 addition & 1 deletion home.admin/config.scripts/lnd.check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ if [ "$1" == "prestart" ]; then

##### APPLICATION OPTIONS SECTION #####

# remove sync-freelist=1 (use =true is you want to overrule raspiblitz)
# remove sync-freelist=1 (use =true if you want to overrule raspiblitz)
# https://github.com/rootzoll/raspiblitz/issues/3251
sed -i "/^# Avoid slow startup time/d" ${lndConfFile}
sed -i "/^sync-freelist=1/d" ${lndConfFile}
Expand Down
9 changes: 8 additions & 1 deletion home.admin/config.scripts/lnd.install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -306,13 +306,20 @@ debuglevel=info
gc-canceled-invoices-on-startup=true
gc-canceled-invoices-on-the-fly=true
ignore-historical-gossip-filters=1
sync-freelist=true
stagger-initial-reconnect=true
tlsautorefresh=1
tlsdisableautofill=1
tlscertpath=/home/bitcoin/.lnd/tls.cert
tlskeypath=/home/bitcoin/.lnd/tls.key

# Set to false for nodes with larger amount of channels. This modification leads to increased
# latency during initialization, yet significantly boosts runtime performance of the daemon.
sync-freelist=true

# Specify the maximum number of logfiles retained in rotation and the threshold size for rotation initiation.
maxlogfiles=5
maxlogfilesize=400

[Bitcoin]
bitcoin.active=1
bitcoin.${CHAIN}=1
Expand Down