mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 04:03:49 +00:00
a4f8175136
Updated bor consensus folder structure
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
package heimdallgrpc
|
|
|
|
import (
|
|
"context"
|
|
"math/big"
|
|
|
|
"github.com/ledgerwatch/erigon/consensus/bor/heimdall/checkpoint"
|
|
"github.com/ledgerwatch/log/v3"
|
|
|
|
proto "github.com/maticnetwork/polyproto/heimdall"
|
|
protoutils "github.com/maticnetwork/polyproto/utils"
|
|
)
|
|
|
|
func (h *HeimdallGRPCClient) FetchCheckpointCount(ctx context.Context) (int64, error) {
|
|
log.Info("Fetching checkpoint count")
|
|
|
|
res, err := h.client.FetchCheckpointCount(ctx, nil)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
log.Info("Fetched checkpoint count")
|
|
|
|
return res.Result.Result, nil
|
|
}
|
|
|
|
func (h *HeimdallGRPCClient) FetchCheckpoint(ctx context.Context, number int64) (*checkpoint.Checkpoint, error) {
|
|
req := &proto.FetchCheckpointRequest{
|
|
ID: number,
|
|
}
|
|
|
|
log.Info("Fetching checkpoint", "number", number)
|
|
|
|
res, err := h.client.FetchCheckpoint(ctx, req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
log.Info("Fetched checkpoint", "number", number)
|
|
|
|
checkpoint := &checkpoint.Checkpoint{
|
|
StartBlock: new(big.Int).SetUint64(res.Result.StartBlock),
|
|
EndBlock: new(big.Int).SetUint64(res.Result.EndBlock),
|
|
RootHash: protoutils.ConvertH256ToHash(res.Result.RootHash),
|
|
Proposer: protoutils.ConvertH160toAddress(res.Result.Proposer),
|
|
BorChainID: res.Result.BorChainID,
|
|
Timestamp: uint64(res.Result.Timestamp.GetSeconds()),
|
|
}
|
|
|
|
return checkpoint, nil
|
|
}
|