diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-03-13 18:19:53 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:50:04 +0800 |
commit | 45fe43cf06735c687b971a903872d6e7a6a77167 (patch) | |
tree | ec6b5f57e78a3dc660d5a8435d738179b23103e2 /dex | |
parent | f6be648b073ec3469b061629ab7507d5e64d6cc1 (diff) | |
download | dexon-45fe43cf06735c687b971a903872d6e7a6a77167.tar dexon-45fe43cf06735c687b971a903872d6e7a6a77167.tar.gz dexon-45fe43cf06735c687b971a903872d6e7a6a77167.tar.bz2 dexon-45fe43cf06735c687b971a903872d6e7a6a77167.tar.lz dexon-45fe43cf06735c687b971a903872d6e7a6a77167.tar.xz dexon-45fe43cf06735c687b971a903872d6e7a6a77167.tar.zst dexon-45fe43cf06735c687b971a903872d6e7a6a77167.zip |
vendor: sync to latest core (#253)
Diffstat (limited to 'dex')
-rw-r--r-- | dex/db/db.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dex/db/db.go b/dex/db/db.go index d51c2df54..b172f924b 100644 --- a/dex/db/db.go +++ b/dex/db/db.go @@ -104,4 +104,18 @@ func (d *DB) GetCompactionChainTipInfo() (hash coreCommon.Hash, height uint64) { return rawdb.ReadCoreCompactionChainTip(d.db) } +func (d *DB) PutOrUpdateDKGMasterPrivateShares( + round uint64, shares coreDKG.PrivateKeyShares) error { + return rawdb.WriteCoreDKGMasterPrivateShares(d.db, round, &shares) +} + +func (d *DB) GetDKGMasterPrivateShares(round uint64) ( + shares coreDKG.PrivateKeyShares, err error) { + mpk := rawdb.ReadCoreDKGMasterPrivateShares(d.db, round) + if mpk == nil { + return coreDKG.PrivateKeyShares{}, coreDb.ErrDKGMasterPrivateSharesDoesNotExist + } + return *mpk, nil +} + func (d *DB) Close() error { return nil } |