mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-11-29 23:47:13 +01:00
cmd/lncli+log: fix linter error
This commit is contained in:
@@ -1142,7 +1142,7 @@ mnemonicCheck:
|
|||||||
if len(cipherSeedMnemonic) != 24 {
|
if len(cipherSeedMnemonic) != 24 {
|
||||||
return fmt.Errorf("wrong cipher seed mnemonic "+
|
return fmt.Errorf("wrong cipher seed mnemonic "+
|
||||||
"length: got %v words, expecting %v words",
|
"length: got %v words, expecting %v words",
|
||||||
len(CipherSeedMnemonic), 24)
|
len(cipherSeedMnemonic), 24)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Additionally, the user may have a passphrase, that will also
|
// Additionally, the user may have a passphrase, that will also
|
||||||
|
|||||||
1
log.go
1
log.go
@@ -11,6 +11,7 @@ import (
|
|||||||
"github.com/btcsuite/btclog"
|
"github.com/btcsuite/btclog"
|
||||||
"github.com/jrick/logrotate/rotator"
|
"github.com/jrick/logrotate/rotator"
|
||||||
"github.com/lightninglabs/neutrino"
|
"github.com/lightninglabs/neutrino"
|
||||||
|
"github.com/lightningnetwork/lightning-onion"
|
||||||
"github.com/lightningnetwork/lnd/autopilot"
|
"github.com/lightningnetwork/lnd/autopilot"
|
||||||
"github.com/lightningnetwork/lnd/chainntnfs"
|
"github.com/lightningnetwork/lnd/chainntnfs"
|
||||||
"github.com/lightningnetwork/lnd/channeldb"
|
"github.com/lightningnetwork/lnd/channeldb"
|
||||||
|
|||||||
Reference in New Issue
Block a user