accounts: AccountManager -> Manager

This commit is contained in:
Felix Lange
2015-03-08 01:52:49 +01:00
parent 3750ec7b7d
commit fb53a9362e
6 changed files with 37 additions and 36 deletions

View File

@ -27,7 +27,7 @@ var pipelogger = logger.NewLogger("XETH")
type Backend interface {
BlockProcessor() *core.BlockProcessor
ChainManager() *core.ChainManager
AccountManager() *accounts.AccountManager
AccountManager() *accounts.Manager
TxPool() *core.TxPool
PeerCount() int
IsListening() bool
@ -42,7 +42,7 @@ type XEth struct {
eth Backend
blockProcessor *core.BlockProcessor
chainManager *core.ChainManager
accountManager *accounts.AccountManager
accountManager *accounts.Manager
state *State
whisper *Whisper
miner *miner.Miner