mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
staticaddr: change min deposit confs from 3 to 6
This commit is contained in:
parent
781d3a0cb4
commit
e3e56ecc70
2 changed files with 2 additions and 2 deletions
|
|
@ -484,7 +484,7 @@ func staticAddressLoopIn(ctx *cli.Context) error {
|
|||
if len(depositList.FilteredDeposits) == 0 {
|
||||
errString := fmt.Sprintf("no confirmed deposits available, "+
|
||||
"deposits need at least %v confirmations",
|
||||
deposit.DefaultConfTarget)
|
||||
deposit.MinConfs)
|
||||
|
||||
return errors.New(errString)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,7 +26,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 = 3
|
||||
MinConfs = 6
|
||||
|
||||
// MaxConfs is unset since we don't require a max number of
|
||||
// confirmations for deposits.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue