diff options
Diffstat (limited to 'core/manager.go')
-rw-r--r-- | core/manager.go | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/core/manager.go b/core/manager.go new file mode 100644 index 000000000..bb039d063 --- /dev/null +++ b/core/manager.go @@ -0,0 +1,20 @@ +package core + +import ( + "github.com/ethereum/go-ethereum/crypto" + "github.com/ethereum/go-ethereum/ethutil" + "github.com/ethereum/go-ethereum/event" + "github.com/ethereum/go-ethereum/p2p" +) + +type Backend interface { + BlockProcessor() *BlockProcessor + ChainManager() *ChainManager + TxPool() *TxPool + PeerCount() int + IsListening() bool + Peers() []*p2p.Peer + KeyManager() *crypto.KeyManager + Db() ethutil.Database + EventMux() *event.TypeMux +} |