cmd/lncli+log: fix linter error

This commit is contained in:
Olaoluwa Osuntokun 2018-03-13 13:01:11 -07:00
parent 813902ddeb
commit 4ced071a7d
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21
2 changed files with 2 additions and 1 deletions

View File

@ -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
View File

@ -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"