Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions eclair-core/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ eclair {
// (with the default behavior, it would "only" cause a local force-close of the channel).
unhandled-exception-strategy = "local-close" // local-close or stop

revocation-timeout = 20 seconds // after sending a commit_sig, we will wait for at most that duration before disconnecting
revocation-timeout = 60 seconds // after sending a commit_sig, we will wait for at most that duration before disconnecting

channel-open-limits {
max-pending-channels-per-peer = 3 // maximum number of pending channels we will accept from a given peer
Expand Down Expand Up @@ -374,10 +374,10 @@ eclair {
}

peer-connection {
auth-timeout = 15 seconds // will disconnect if connection authentication doesn't happen within that timeframe
init-timeout = 15 seconds // will disconnect if initialization doesn't happen within that timeframe
auth-timeout = 30 seconds // will disconnect if connection authentication doesn't happen within that timeframe
init-timeout = 30 seconds // will disconnect if initialization doesn't happen within that timeframe
ping-interval = 30 seconds
ping-timeout = 20 seconds // will disconnect if peer takes longer than that to respond
ping-timeout = 60 seconds // will disconnect if peer takes longer than that to respond
ping-disconnect = true // disconnect if no answer to our pings
// When enabled, if we receive an incoming connection, we will echo the source IP address in our init message.
// This should be disabled if your node is behind a load balancer that doesn't preserve source IP addresses.
Expand Down