discovery: print proper error message when sigs fail to validate

This commit is contained in:
Olaoluwa Osuntokun 2017-08-23 11:30:50 -07:00
parent 6e3abdfd14
commit d0b192c636
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
package discovery
import (
"github.com/davecgh/go-spew/spew"
"github.com/go-errors/errors"
"github.com/lightningnetwork/lnd/lnwire"
"github.com/roasbeef/btcd/btcec"
@ -81,8 +82,8 @@ func (d *AuthenticatedGossiper) validateChannelUpdateAnn(pubKey *btcec.PublicKey
dataHash := chainhash.DoubleHashB(data)
if !a.Signature.Verify(dataHash, copyPubKey(pubKey)) {
return errors.Errorf("verification of channel updates "+
"failed chan_id=%v", a.ShortChannelID.ToUint64())
return errors.Errorf("invalid signature for channel "+
"update %v", spew.Sdump(a))
}
return nil