Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix crosslink processing, add logs for crosslinks #4630

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion consensus/view_change_construct.go
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ func (vc *viewChange) InitPayload(
if !inited {
viewIDBytes := make([]byte, 8)
binary.LittleEndian.PutUint64(viewIDBytes, viewID)
vc.getLogger().Info().Uint64("viewID", viewID).Uint64("blockNum", blockNum).Msg("[InitPayload] add my M3 (ViewID) type messaage")
vc.getLogger().Info().Uint64("viewID", viewID).Uint64("blockNum", blockNum).Msg("[InitPayload] add my M3 (ViewID) type message")
for _, key := range privKeys {
if _, ok := vc.viewIDBitmap[viewID]; !ok {
viewIDBitmap := bls_cosi.NewMask(members)
Expand Down
18 changes: 18 additions & 0 deletions node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -1183,6 +1183,24 @@ func New(

node.serviceManager = service.NewManager()

// log all pending crosslinks
allPending, err := node.Blockchain().ReadPendingCrossLinks()
if err == nil {
for _, pending := range allPending {
utils.Logger().Info().
Uint32("shard", pending.ShardID()).
Int64("epoch", pending.Epoch().Int64()).
Uint64("blockNum", pending.BlockNum()).
Int64("viewID", pending.ViewID().Int64()).
Interface("hash", pending.Hash()).
Msg("[PendingCrossLinksOnInit] pending cross links")
}
} else {
utils.Logger().Error().
Err(err).
Msg("read pending cross links failed")
}

return &node
}

Expand Down
35 changes: 34 additions & 1 deletion node/node_newblock.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package node

import (
"math/big"
"sort"
"strings"
"time"
Expand Down Expand Up @@ -226,11 +227,35 @@ func (node *Node) ProposeNewBlock(commitSigs chan []byte) (*types.Block, error)
utils.AnalysisStart("proposeNewBlockVerifyCrossLinks")
// Prepare cross links and slashing messages
var crossLinksToPropose types.CrossLinks
ten := big.NewInt(10)
// map of shard id to last processed crosslink
var lastCrossLinkEpoch map[uint32]*big.Int
if isBeaconchainInCrossLinkEra {
allPending, err := node.Blockchain().ReadPendingCrossLinks()
invalidToDelete := []types.CrossLink{}
if err == nil {
for _, pending := range allPending {
// trying to retrieve last cross link of the shard
var crossLinkEpochThreshold *big.Int
if epoch, exist := lastCrossLinkEpoch[pending.ShardID()]; exist {
crossLinkEpochThreshold = epoch
} else {
if lscl, errC := node.Blockchain().ReadShardLastCrossLink(pending.ShardID()); errC == nil && lscl != nil {
lastCrossLinkEpoch[pending.ShardID()] = lscl.EpochF
crossLinkEpochThreshold = lscl.EpochF
} else {
lastCrossLinkEpoch[pending.ShardID()] = new(big.Int).Sub(currentHeader.Epoch(), ten)
crossLinkEpochThreshold = new(big.Int).Sub(currentHeader.Epoch(), ten)
}
utils.Logger().Debug().
Uint32("shard", pending.ShardID()).
Int64("crossLinkEpochThreshold", crossLinkEpochThreshold.Int64()).
Msg("calculating epoch for the last cross link of the shard")
}
// if pending crosslink is older than last shard cross link or it is older than 10 epochs, ignore it
if pending.EpochF.Cmp(crossLinkEpochThreshold) <= 0 {
continue
}
// ReadCrossLink beacon chain usage.
exist, err := node.Blockchain().ReadCrossLink(pending.ShardID(), pending.BlockNum())
if err == nil || exist != nil {
Expand All @@ -247,8 +272,16 @@ func (node *Node) ProposeNewBlock(commitSigs chan []byte) (*types.Block, error)
AnErr("[ProposeNewBlock] pending crosslink that's before crosslink epoch", err)
continue
}

crossLinksToPropose = append(crossLinksToPropose, pending)
utils.Logger().Debug().
Int64("crossLinkEpochThreshold", crossLinkEpochThreshold.Int64()).
Uint32("shard", pending.ShardID()).
Int64("epoch", pending.Epoch().Int64()).
Uint64("blockNum", pending.BlockNum()).
Int64("viewID", pending.ViewID().Int64()).
Interface("hash", pending.Hash()).
Msg("add cross link to proposing block")

if len(crossLinksToPropose) > 15 {
break
}
Expand Down