chainntfns: remove source.go it's no longer needed

This commit is contained in:
Olaoluwa Osuntokun 2016-02-24 22:14:42 -08:00
parent c7402f3462
commit 9fb8045bd2

@ -1,14 +0,0 @@
package btcdnotify
import (
"github.com/btcsuite/btcwallet/chain"
"github.com/btcsuite/btcwallet/wtxmgr"
)
// ChainConnection...
// Required in order to avoid an import cycle, and do aide in testing.
type ChainConnection interface {
ListenConnectedBlocks() (<-chan wtxmgr.BlockMeta, error)
ListenDisconnectedBlocks() (<-chan wtxmgr.BlockMeta, error)
ListenRelevantTxs() (<-chan chain.RelevantTx, error)
}