diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-13 22:38:47 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-13 22:38:47 +0800 |
commit | b0798e0a72fef9823053b064f64a1a49681b10ca (patch) | |
tree | 0ff11c295033631379d8570b9f2dc2c8db632e2a /ethchain | |
parent | 9831ba20b234a38f779af9aa49ee88d571d57c6e (diff) | |
parent | c9ac5b0f74e3b1b3026fa1351e682916bf8f7c71 (diff) | |
download | go-tangerine-b0798e0a72fef9823053b064f64a1a49681b10ca.tar go-tangerine-b0798e0a72fef9823053b064f64a1a49681b10ca.tar.gz go-tangerine-b0798e0a72fef9823053b064f64a1a49681b10ca.tar.bz2 go-tangerine-b0798e0a72fef9823053b064f64a1a49681b10ca.tar.lz go-tangerine-b0798e0a72fef9823053b064f64a1a49681b10ca.tar.xz go-tangerine-b0798e0a72fef9823053b064f64a1a49681b10ca.tar.zst go-tangerine-b0798e0a72fef9823053b064f64a1a49681b10ca.zip |
Merge branch 'develop' of github.com-obscure:ethereum/eth-go into develop
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/state_manager.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ethchain/state_manager.go b/ethchain/state_manager.go index dd21a31b1..bc8b46831 100644 --- a/ethchain/state_manager.go +++ b/ethchain/state_manager.go @@ -20,6 +20,9 @@ type EthManager interface { TxPool() *TxPool Broadcast(msgType ethwire.MsgType, data []interface{}) Reactor() *ethutil.ReactorEngine + PeerCount() int + IsMining() bool + IsListening() bool } type StateManager struct { |