From 9fb8045bd2b6d49688c06b655c0e7d1f818a1d13 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 24 Feb 2016 22:14:42 -0800 Subject: [PATCH] chainntfns: remove source.go it's no longer needed --- chainntfs/btcdnotify/source.go | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 chainntfs/btcdnotify/source.go diff --git a/chainntfs/btcdnotify/source.go b/chainntfs/btcdnotify/source.go deleted file mode 100644 index dc7e5a2b..00000000 --- a/chainntfs/btcdnotify/source.go +++ /dev/null @@ -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) -}