diff options
author | Felix Lange <fjl@twurst.com> | 2015-09-14 15:35:57 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-09-15 05:36:30 +0800 |
commit | 8c4dab77ba48dc68073fe1df79e7000043c0f966 (patch) | |
tree | 09ebb0fdb1b72e49ea2cfb9ebdc55a73a174302a /core/manager.go | |
parent | 55ed8d108d72d12543ecdc6d8c9d9978392dabf0 (diff) | |
download | dexon-8c4dab77ba48dc68073fe1df79e7000043c0f966.tar.gz dexon-8c4dab77ba48dc68073fe1df79e7000043c0f966.tar.zst dexon-8c4dab77ba48dc68073fe1df79e7000043c0f966.zip |
all: move common.Database to package ethdb
Diffstat (limited to 'core/manager.go')
-rw-r--r-- | core/manager.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/manager.go b/core/manager.go index 8b0401b03..0f108a6de 100644 --- a/core/manager.go +++ b/core/manager.go @@ -18,7 +18,7 @@ package core import ( "github.com/ethereum/go-ethereum/accounts" - "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/event" ) @@ -28,7 +28,7 @@ type Backend interface { BlockProcessor() *BlockProcessor ChainManager() *ChainManager TxPool() *TxPool - ChainDb() common.Database - DappDb() common.Database + ChainDb() ethdb.Database + DappDb() ethdb.Database EventMux() *event.TypeMux } |