mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-12 14:12:27 +02:00
multi: update to latest ChainNotifier impl New method
This commit is contained in:
@ -1777,14 +1777,16 @@ func TestInterfaces(t *testing.T) {
|
||||
)
|
||||
newNotifier = func() (chainntnfs.TestChainNotifier, error) {
|
||||
return bitcoindnotify.New(
|
||||
bitcoindConn, hintCache, hintCache,
|
||||
bitcoindConn, chainntnfs.NetParams,
|
||||
hintCache, hintCache,
|
||||
), nil
|
||||
}
|
||||
|
||||
case "btcd":
|
||||
newNotifier = func() (chainntnfs.TestChainNotifier, error) {
|
||||
return btcdnotify.New(
|
||||
&rpcConfig, hintCache, hintCache,
|
||||
&rpcConfig, chainntnfs.NetParams,
|
||||
hintCache, hintCache,
|
||||
)
|
||||
}
|
||||
|
||||
@ -1796,7 +1798,7 @@ func TestInterfaces(t *testing.T) {
|
||||
newNotifier = func() (chainntnfs.TestChainNotifier, error) {
|
||||
return neutrinonotify.New(
|
||||
spvNode, hintCache, hintCache,
|
||||
)
|
||||
), nil
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user