mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-13 11:09:23 +01:00
chaintfns: skeleton of first notifier
This commit is contained in:
parent
d9f32db185
commit
e2c4ccbe28
2 changed files with 9 additions and 0 deletions
8
chainntfs/btcd.go
Normal file
8
chainntfs/btcd.go
Normal file
|
@ -0,0 +1,8 @@
|
|||
package chainntnfs
|
||||
|
||||
type BtcdNotifier struct {
|
||||
}
|
||||
|
||||
func newBtcdNotifier() (*BtcdNotifier, error) {
|
||||
return nil, nil
|
||||
}
|
|
@ -7,6 +7,7 @@ package chainntnfs
|
|||
// * direct p2p
|
||||
// * random bitcoin API?
|
||||
// * electrum?
|
||||
// * SPV bloomfilter
|
||||
// * other stuff maybe...
|
||||
type ChainNotifier interface {
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue