Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/loop/staticaddr.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down
2 changes: 1 addition & 1 deletion staticaddr/deposit/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion staticaddr/loopin/fsm.go
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ func (f *FSM) Infof(format string, args ...interface{}) {
// Debugf logs a debug message with the loop-in swap hash.
func (f *FSM) Debugf(format string, args ...interface{}) {
if f.loopIn == nil {
log.Infof(format, args...)
log.Debugf(format, args...)
return
}
log.Debugf(
Expand Down
Loading
Loading