channeldb: add storing of node signature and add edge signature

In order to properly announce the channel the announcements proofs
should be persistent in boltdb.
This commit is contained in:
Andrey Samokhvalov
2017-03-27 18:01:12 +03:00
committed by Olaoluwa Osuntokun
parent 2105a06a26
commit 19174ebdfd
4 changed files with 46 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ func createGraphNode() (*channeldb.LightningNode, error) {
PubKey: priv.PubKey(),
Color: color.RGBA{1, 2, 3, 0},
Alias: "kek" + string(pub[:]),
AuthSig: testSig,
Features: testFeatures,
}, nil
}
@@ -79,6 +80,7 @@ func randEdgePolicy(chanID lnwire.ShortChannelID,
node *channeldb.LightningNode) *channeldb.ChannelEdgePolicy {
return &channeldb.ChannelEdgePolicy{
Signature: testSig,
ChannelID: chanID.ToUint64(),
LastUpdate: time.Unix(int64(prand.Int31()), 0),
TimeLockDelta: uint16(prand.Int63()),