multi: fix linter errors

This commit is contained in:
Olaoluwa Osuntokun
2017-07-30 18:22:38 -07:00
parent 563fac84cc
commit 747e0f57d1
5 changed files with 12 additions and 9 deletions

View File

@@ -142,7 +142,7 @@ func (m *mockNotfier) RegisterSpendNtfn(outpoint *wire.OutPoint, heightHint uint
//
// TODO(roasbeef): rename!
func initRevocationWindows(chanA, chanB *LightningChannel, windowSize int) error {
aliceNextRevoke, err := chanA.NextRevocationkey()
aliceNextRevoke, err := chanA.NextRevocationKey()
if err != nil {
return err
}
@@ -150,7 +150,7 @@ func initRevocationWindows(chanA, chanB *LightningChannel, windowSize int) error
return err
}
bobNextRevoke, err := chanB.NextRevocationkey()
bobNextRevoke, err := chanB.NextRevocationKey()
if err != nil {
return err
}