chaintfns: skeleton of first notifier

This commit is contained in:
Olaoluwa Osuntokun 2015-12-16 22:55:22 -06:00
parent d9f32db185
commit e2c4ccbe28
2 changed files with 9 additions and 0 deletions

8
chainntfs/btcd.go Normal file
View File

@ -0,0 +1,8 @@
package chainntnfs
type BtcdNotifier struct {
}
func newBtcdNotifier() (*BtcdNotifier, error) {
return nil, nil
}

View File

@ -7,6 +7,7 @@ package chainntnfs
// * direct p2p
// * random bitcoin API?
// * electrum?
// * SPV bloomfilter
// * other stuff maybe...
type ChainNotifier interface {
}