pull/541/head
sidhujag 2020-09-10 11:51:12 -07:00
parent 3e43744435
commit 0aac8f0607
1 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,6 @@ package db
import (
"blockbook/bchain"
"bytes"
"strings"
"github.com/golang/glog"
"github.com/juju/errors"
"github.com/tecbot/gorocksdb"
@ -361,7 +360,7 @@ func (d *RocksDB) storeAssets(wb *gorocksdb.WriteBatch, assets map[uint32]*bchai
return nil
}
func (d *RocksDB) GetAssetCache() *map[uint32]*bchain.Asset {
func (d *RocksDB) GetAssetCache() *map[uint32]bchain.Asset {
return &AssetCache
}