Skip to content
Closed
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
2 changes: 1 addition & 1 deletion staticaddr/deposit/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const (
// MinConfs is the minimum number of confirmations we require for a
// deposit to be considered available for loop-ins, coop-spends and
// timeouts.
MinConfs = 6
MinConfs = 3

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security-high high

Reducing MinConfs from 6 to 3 significantly lowers the security margin for deposits. This increases the risk of transactions being reversed due to blockchain reorgs, potentially affecting the reliability of subsequent loop-ins, coop-spends, and timeouts. A 3-confirmation threshold is generally considered less secure for high-value transactions compared to 6 confirmations.


// MaxConfs is unset since we don't require a max number of
// confirmations for deposits.
Expand Down
Loading