Make drand build

Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
Jakub Sztandera 2020-04-09 14:39:51 +02:00
parent 029ffc2dc3
commit 7ee6388686

View File

@ -2,6 +2,7 @@ package drand
import ( import (
"context" "context"
"sync"
"github.com/filecoin-project/lotus/chain/beacon" "github.com/filecoin-project/lotus/chain/beacon"
"github.com/filecoin-project/lotus/chain/types" "github.com/filecoin-project/lotus/chain/types"
@ -14,27 +15,34 @@ import (
type DrandBeacon struct { type DrandBeacon struct {
client dnet.Client client dnet.Client
cacheLk sync.Mutex cacheLk sync.Mutex
localCache map[int64]types.BeaconEntry localCache map[int64]types.BeaconEntry
} }
func NewDrandBeacon() *DrandBeacon { func NewDrandBeacon() *DrandBeacon {
return &DrandBeacon{dnet.NewGrpcClient()} return &DrandBeacon{
client: dnet.NewGrpcClient(),
localCache: make(map[int64]types.BeaconEntry),
}
} }
func (db *DrandBeacon) //func (db *DrandBeacon)
func (db *DrandBeacon) Entry(ctx context.Context, round uint64) <-chan beacon.Response { func (db *DrandBeacon) Entry(ctx context.Context, round uint64) <-chan beacon.Response {
// check cache, it it if there, otherwise query the endpoint // check cache, it it if there, otherwise query the endpoint
resp, err := db.client.PublicRand(ctx, &dproto.PublicRandRequest{round}) resp, err := db.client.PublicRand(nil, &dproto.PublicRandRequest{Round: round})
_, _ = resp, err
return nil
} }
func (db *DrandBeacon) VerifyEntry(types.BeaconEntry, types.BeaconEntry) error { func (db *DrandBeacon) VerifyEntry(types.BeaconEntry, types.BeaconEntry) error {
return nil
} }
func (db *DrandBeacon) MaxBeaconRoundForEpoch(abi.ChainEpoch, types.BeaconEntry) uint64 { func (db *DrandBeacon) MaxBeaconRoundForEpoch(abi.ChainEpoch, types.BeaconEntry) uint64 {
// this is just some local math // this is just some local math
return 0
} }
var _ beacon.RandomBeacon = (*DrandBeacon)(nil) var _ beacon.RandomBeacon = (*DrandBeacon)(nil)