aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-03-07 19:38:33 +0800
committerFelix Lange <fjl@twurst.com>2015-03-07 19:38:33 +0800
commitd66f93cecdbae6a88bfb710e0d95d62340bf2460 (patch)
tree8e270614345c87d3ea724387ba3baf2acdfa8972 /core
parentbc45e5c6de3052a4c853387dea0af5cd9207f1f7 (diff)
downloadgo-tangerine-d66f93cecdbae6a88bfb710e0d95d62340bf2460.tar
go-tangerine-d66f93cecdbae6a88bfb710e0d95d62340bf2460.tar.gz
go-tangerine-d66f93cecdbae6a88bfb710e0d95d62340bf2460.tar.bz2
go-tangerine-d66f93cecdbae6a88bfb710e0d95d62340bf2460.tar.lz
go-tangerine-d66f93cecdbae6a88bfb710e0d95d62340bf2460.tar.xz
go-tangerine-d66f93cecdbae6a88bfb710e0d95d62340bf2460.tar.zst
go-tangerine-d66f93cecdbae6a88bfb710e0d95d62340bf2460.zip
accounts, core, eth, xeth: use account manager for everything
The account manager is now responsible for picking the default account and the coinbase.
Diffstat (limited to 'core')
-rw-r--r--core/manager.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/manager.go b/core/manager.go
index bb039d063..29f786653 100644
--- a/core/manager.go
+++ b/core/manager.go
@@ -1,7 +1,6 @@
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"
@@ -14,7 +13,6 @@ type Backend interface {
PeerCount() int
IsListening() bool
Peers() []*p2p.Peer
- KeyManager() *crypto.KeyManager
Db() ethutil.Database
EventMux() *event.TypeMux
}