mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-11 01:29:19 +01:00
cmd/lncli+log: fix linter error
This commit is contained in:
parent
813902ddeb
commit
4ced071a7d
2 changed files with 2 additions and 1 deletions
|
@ -1142,7 +1142,7 @@ mnemonicCheck:
|
|||
if len(cipherSeedMnemonic) != 24 {
|
||||
return fmt.Errorf("wrong cipher seed mnemonic "+
|
||||
"length: got %v words, expecting %v words",
|
||||
len(CipherSeedMnemonic), 24)
|
||||
len(cipherSeedMnemonic), 24)
|
||||
}
|
||||
|
||||
// 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/jrick/logrotate/rotator"
|
||||
"github.com/lightninglabs/neutrino"
|
||||
"github.com/lightningnetwork/lightning-onion"
|
||||
"github.com/lightningnetwork/lnd/autopilot"
|
||||
"github.com/lightningnetwork/lnd/chainntnfs"
|
||||
"github.com/lightningnetwork/lnd/channeldb"
|
||||
|
|
Loading…
Add table
Reference in a new issue