aboutsummaryrefslogtreecommitdiffstats
path: root/dex/cache.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-12-13 11:12:59 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:49:59 +0800
commitac95218229e1028b8024953d420f394eb08649e5 (patch)
treed524d56d85e27cd68b7e4885a11b9661bfd2c7c5 /dex/cache.go
parentd74a391e275921757684af00645ccb69fc9777dd (diff)
downloaddexon-ac95218229e1028b8024953d420f394eb08649e5.tar
dexon-ac95218229e1028b8024953d420f394eb08649e5.tar.gz
dexon-ac95218229e1028b8024953d420f394eb08649e5.tar.bz2
dexon-ac95218229e1028b8024953d420f394eb08649e5.tar.lz
dexon-ac95218229e1028b8024953d420f394eb08649e5.tar.xz
dexon-ac95218229e1028b8024953d420f394eb08649e5.tar.zst
dexon-ac95218229e1028b8024953d420f394eb08649e5.zip
vendor: sync to latest core and fix conflict
Diffstat (limited to 'dex/cache.go')
-rw-r--r--dex/cache.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/dex/cache.go b/dex/cache.go
index c95038e1d..89bbbe3be 100644
--- a/dex/cache.go
+++ b/dex/cache.go
@@ -21,7 +21,7 @@ import (
"sync"
coreCommon "github.com/dexon-foundation/dexon-consensus/common"
- coreBlockdb "github.com/dexon-foundation/dexon-consensus/core/blockdb"
+ coreDb "github.com/dexon-foundation/dexon-consensus/core/db"
coreTypes "github.com/dexon-foundation/dexon-consensus/core/types"
)
@@ -48,12 +48,12 @@ type cache struct {
blockCache map[coreCommon.Hash]*coreTypes.Block
voteCache map[coreTypes.Position]map[voteKey]*coreTypes.Vote
votePosition []coreTypes.Position
- db coreBlockdb.BlockDatabase
+ db coreDb.Database
voteSize int
size int
}
-func newCache(size int, db coreBlockdb.BlockDatabase) *cache {
+func newCache(size int, db coreDb.Database) *cache {
return &cache{
blockCache: make(map[coreCommon.Hash]*coreTypes.Block),
voteCache: make(map[coreTypes.Position]map[voteKey]*coreTypes.Vote),
@@ -115,7 +115,7 @@ func (c *cache) blocks(hashes coreCommon.Hashes) []*coreTypes.Block {
if block, exist := c.blockCache[hash]; exist {
cacheBlocks = append(cacheBlocks, block)
} else {
- block, err := c.db.Get(hash)
+ block, err := c.db.GetBlock(hash)
if err != nil {
continue
}