channeldb: attach DB to channel in FetchHistoricalChannel

This commit is contained in:
yyforyongyu
2021-08-30 18:58:43 +08:00
parent e513057eae
commit 556b038398
2 changed files with 6 additions and 3 deletions

View File

@@ -1299,6 +1299,8 @@ func (d *DB) FetchHistoricalChannel(outPoint *wire.OutPoint) (*OpenChannel, erro
} }
channel, err = fetchOpenChannel(chanBucket, outPoint) channel, err = fetchOpenChannel(chanBucket, outPoint)
channel.Db = d
return err return err
}, func() { }, func() {
channel = nil channel = nil

View File

@@ -717,9 +717,10 @@ func TestFetchHistoricalChannel(t *testing.T) {
t.Fatalf("unexepected error getting channel: %v", err) t.Fatalf("unexepected error getting channel: %v", err)
} }
// Set the db on our channel to nil so that we can check that all other // FetchHistoricalChannel will attach the cdb to channel.Db, we set it
// fields on the channel equal those on the historical channel. // here so that we can check that all other fields on the channel equal
channel.Db = nil // those on the historical channel.
channel.Db = cdb
if !reflect.DeepEqual(histChannel, channel) { if !reflect.DeepEqual(histChannel, channel) {
t.Fatalf("expected: %v, got: %v", channel, histChannel) t.Fatalf("expected: %v, got: %v", channel, histChannel)