mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-05 10:39:03 +02:00
netann: give ChanStatusManager access to BestBlockView
This commit is contained in:
parent
183d18447a
commit
62a2f64eb7
@ -7,6 +7,7 @@ import (
|
||||
|
||||
"github.com/btcsuite/btcd/btcec/v2"
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"github.com/lightningnetwork/lnd/chainntnfs"
|
||||
"github.com/lightningnetwork/lnd/channeldb"
|
||||
"github.com/lightningnetwork/lnd/keychain"
|
||||
"github.com/lightningnetwork/lnd/lnwallet"
|
||||
@ -51,6 +52,9 @@ type ChanStatusConfig struct {
|
||||
// MessageSigner signs messages that validate under OurPubKey.
|
||||
MessageSigner lnwallet.MessageSigner
|
||||
|
||||
// BestBlockView gives access to the current best block.
|
||||
BestBlockView chainntnfs.BestBlockView
|
||||
|
||||
// IsChannelActive checks whether the channel identified by the provided
|
||||
// ChannelID is considered active. This should only return true if the
|
||||
// channel has been sufficiently confirmed, the channel has received
|
||||
|
@ -15,6 +15,7 @@ import (
|
||||
"github.com/btcsuite/btcd/btcec/v2"
|
||||
"github.com/btcsuite/btcd/btcec/v2/ecdsa"
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"github.com/lightningnetwork/lnd/chainntnfs"
|
||||
"github.com/lightningnetwork/lnd/channeldb"
|
||||
"github.com/lightningnetwork/lnd/channeldb/models"
|
||||
"github.com/lightningnetwork/lnd/keychain"
|
||||
@ -344,6 +345,7 @@ func newManagerCfg(t *testing.T, numChannels int,
|
||||
ApplyChannelUpdate: graph.ApplyChannelUpdate,
|
||||
DB: graph,
|
||||
Graph: graph,
|
||||
BestBlockView: &mockBlockView{},
|
||||
}
|
||||
|
||||
return cfg, graph, htlcSwitch
|
||||
@ -937,3 +939,11 @@ func TestChanStatusManagerStateMachine(t *testing.T) {
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
type mockBlockView struct {
|
||||
chainntnfs.BestBlockView
|
||||
}
|
||||
|
||||
func (m *mockBlockView) BestHeight() (uint32, error) {
|
||||
return 0, nil
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user