2017-11-10 03:30:20 +03:00
|
|
|
package bitcoindnotify
|
|
|
|
|
|
|
|
import (
|
2018-08-15 03:53:34 +03:00
|
|
|
"errors"
|
2017-11-10 03:30:20 +03:00
|
|
|
"fmt"
|
|
|
|
|
2018-12-07 08:14:04 +03:00
|
|
|
"github.com/btcsuite/btcd/chaincfg"
|
2018-07-17 02:50:47 +03:00
|
|
|
"github.com/btcsuite/btcwallet/chain"
|
2021-03-18 15:42:18 +03:00
|
|
|
"github.com/lightningnetwork/lnd/blockcache"
|
2018-07-31 10:17:17 +03:00
|
|
|
"github.com/lightningnetwork/lnd/chainntnfs"
|
2017-11-10 03:30:20 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// createNewNotifier creates a new instance of the ChainNotifier interface
|
|
|
|
// implemented by BitcoindNotifier.
|
|
|
|
func createNewNotifier(args ...interface{}) (chainntnfs.ChainNotifier, error) {
|
2021-03-18 15:42:18 +03:00
|
|
|
if len(args) != 5 {
|
2017-11-10 03:30:20 +03:00
|
|
|
return nil, fmt.Errorf("incorrect number of arguments to "+
|
2021-03-18 15:42:18 +03:00
|
|
|
".New(...), expected 5, instead passed %v", len(args))
|
2017-11-10 03:30:20 +03:00
|
|
|
}
|
|
|
|
|
2018-07-17 02:50:47 +03:00
|
|
|
chainConn, ok := args[0].(*chain.BitcoindConn)
|
2017-11-10 03:30:20 +03:00
|
|
|
if !ok {
|
2018-08-15 03:53:34 +03:00
|
|
|
return nil, errors.New("first argument to bitcoindnotify.New " +
|
2018-07-17 02:50:47 +03:00
|
|
|
"is incorrect, expected a *chain.BitcoindConn")
|
2017-11-10 03:30:20 +03:00
|
|
|
}
|
|
|
|
|
2018-12-07 08:14:04 +03:00
|
|
|
chainParams, ok := args[1].(*chaincfg.Params)
|
2018-08-15 03:53:34 +03:00
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("second argument to bitcoindnotify.New " +
|
2018-12-07 08:14:04 +03:00
|
|
|
"is incorrect, expected a *chaincfg.Params")
|
2018-08-15 03:53:34 +03:00
|
|
|
}
|
|
|
|
|
2018-12-07 08:14:04 +03:00
|
|
|
spendHintCache, ok := args[2].(chainntnfs.SpendHintCache)
|
2018-08-15 03:53:34 +03:00
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("third argument to bitcoindnotify.New " +
|
2018-12-07 08:14:04 +03:00
|
|
|
"is incorrect, expected a chainntnfs.SpendHintCache")
|
|
|
|
}
|
|
|
|
|
|
|
|
confirmHintCache, ok := args[3].(chainntnfs.ConfirmHintCache)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("fourth argument to bitcoindnotify.New " +
|
2018-08-15 03:53:34 +03:00
|
|
|
"is incorrect, expected a chainntnfs.ConfirmHintCache")
|
|
|
|
}
|
|
|
|
|
2021-03-18 15:42:18 +03:00
|
|
|
blockCache, ok := args[4].(*blockcache.BlockCache)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("fifth argument to bitcoindnotify.New " +
|
|
|
|
"is incorrect, expected a *blockcache.BlockCache")
|
|
|
|
}
|
|
|
|
|
|
|
|
return New(chainConn, chainParams, spendHintCache,
|
|
|
|
confirmHintCache, blockCache), nil
|
2017-11-10 03:30:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// init registers a driver for the BtcdNotifier concrete implementation of the
|
|
|
|
// chainntnfs.ChainNotifier interface.
|
|
|
|
func init() {
|
|
|
|
// Register the driver.
|
|
|
|
notifier := &chainntnfs.NotifierDriver{
|
|
|
|
NotifierType: notifierType,
|
|
|
|
New: createNewNotifier,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := chainntnfs.RegisterNotifier(notifier); err != nil {
|
|
|
|
panic(fmt.Sprintf("failed to register notifier driver '%s': %v",
|
|
|
|
notifierType, err))
|
|
|
|
}
|
|
|
|
}
|