aboutsummaryrefslogtreecommitdiffstats
path: root/dex/backend.go
diff options
context:
space:
mode:
authorMission Liao <mission.liao@dexon.org>2018-12-18 10:02:30 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:54 +0800
commit1c506268a5385adce7885b7e950707bf9ffd5084 (patch)
tree20fdeb4fffc2f69e493fba1f8771441fa3db484c /dex/backend.go
parentc972cddcfb5d5b16efdf08135b4f7782d796764c (diff)
downloaddexon-1c506268a5385adce7885b7e950707bf9ffd5084.tar.gz
dexon-1c506268a5385adce7885b7e950707bf9ffd5084.tar.zst
dexon-1c506268a5385adce7885b7e950707bf9ffd5084.zip
vendor: sync to latest core (#91)
- Implement new methods in db to cache DKG private key. - Implement new methods in db to cache compaction chain tip.
Diffstat (limited to 'dex/backend.go')
-rw-r--r--dex/backend.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dex/backend.go b/dex/backend.go
index 5ea30b1a9..2c87425de 100644
--- a/dex/backend.go
+++ b/dex/backend.go
@@ -31,7 +31,7 @@ import (
"github.com/dexon-foundation/dexon/core/bloombits"
"github.com/dexon-foundation/dexon/core/rawdb"
"github.com/dexon-foundation/dexon/core/vm"
- "github.com/dexon-foundation/dexon/dex/blockdb"
+ dexDB "github.com/dexon-foundation/dexon/dex/db"
"github.com/dexon-foundation/dexon/dex/downloader"
"github.com/dexon-foundation/dexon/eth/filters"
"github.com/dexon-foundation/dexon/eth/gasprice"
@@ -170,7 +170,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Dexon, error) {
log.Info("DEXON Consensus DMoment", "time", dMoment)
dex.consensus = dexCore.NewConsensus(dMoment,
- dex.app, dex.governance, blockdb.NewDatabase(chainDb), dex.network, privKey, log.Root())
+ dex.app, dex.governance, dexDB.NewDatabase(chainDb), dex.network, privKey, log.Root())
return dex, nil
}