mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
3458b2eb7d
This commit adds a new migration to patch the two balance fields, `InitialLocalBalance` and `InitialRemoteBalance` for the historical channels. Because they are not saved previously, for historical channels prior to the revocation log PR, these fields will be empty.
15 lines
356 B
Go
15 lines
356 B
Go
package migration27
|
|
|
|
import (
|
|
"github.com/btcsuite/btclog"
|
|
)
|
|
|
|
// log is a logger that is initialized as disabled. This means the package will
|
|
// not perform any logging by default until a logger is set.
|
|
var log = btclog.Disabled
|
|
|
|
// UseLogger uses a specified Logger to output package logging info.
|
|
func UseLogger(logger btclog.Logger) {
|
|
log = logger
|
|
}
|