mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-12 18:52:14 +01:00
Merge branch 'v0-16-1-branch-rc1-7604' into v0-16-1-branch-rc1
This commit is contained in:
commit
a49671d076
2 changed files with 6 additions and 1 deletions
|
@ -76,6 +76,9 @@ available](https://github.com/lightningnetwork/lnd/pull/7529).
|
||||||
|
|
||||||
* [Put back P2TR as default change type
|
* [Put back P2TR as default change type
|
||||||
in batch_open_channel](https://github.com/lightningnetwork/lnd/pull/7603).
|
in batch_open_channel](https://github.com/lightningnetwork/lnd/pull/7603).
|
||||||
|
|
||||||
|
* [Fix log output](https://github.com/lightningnetwork/lnd/pull/7604).
|
||||||
|
|
||||||
|
|
||||||
# Contributors (Alphabetical Order)
|
# Contributors (Alphabetical Order)
|
||||||
|
|
||||||
|
|
|
@ -398,7 +398,9 @@ func (m *ChanStatusManager) processEnableRequest(outpoint wire.OutPoint,
|
||||||
|
|
||||||
// Channel is already enabled, nothing to do.
|
// Channel is already enabled, nothing to do.
|
||||||
case ChanStatusEnabled:
|
case ChanStatusEnabled:
|
||||||
log.Debugf("Channel(%v) already enabled, skipped announcement")
|
log.Debugf("Channel(%v) already enabled, skipped "+
|
||||||
|
"announcement", outpoint)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
// The channel is enabled, though we are now canceling the scheduled
|
// The channel is enabled, though we are now canceling the scheduled
|
||||||
|
|
Loading…
Add table
Reference in a new issue