mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
Fix finalized block filtering in sync (#3334)
This commit is contained in:
@@ -43,7 +43,7 @@ func (c *ChainService) ReceiveAttestation(ctx context.Context, att *ethpb.Attest
|
||||
}
|
||||
|
||||
log.WithFields(logrus.Fields{
|
||||
"attRoot": hex.EncodeToString(attRoot[:]),
|
||||
"attRoot": hex.EncodeToString(attRoot[:]),
|
||||
"attDataRoot": hex.EncodeToString(att.Data.BeaconBlockRoot),
|
||||
}).Debug("Broadcasting attestation")
|
||||
|
||||
|
||||
@@ -65,6 +65,7 @@ go_test(
|
||||
"rpc_hello_test.go",
|
||||
"rpc_recent_beacon_blocks_test.go",
|
||||
"rpc_test.go",
|
||||
"subscriber_beacon_blocks_test.go",
|
||||
"subscriber_test.go",
|
||||
"validate_attester_slashing_test.go",
|
||||
"validate_beacon_attestation_test.go",
|
||||
@@ -92,6 +93,7 @@ go_test(
|
||||
"@com_github_libp2p_go_libp2p_core//network:go_default_library",
|
||||
"@com_github_libp2p_go_libp2p_core//protocol:go_default_library",
|
||||
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
||||
"@com_github_sirupsen_logrus//:go_default_library",
|
||||
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -24,7 +24,9 @@ func (r *RegularSync) beaconBlockSubscriber(ctx context.Context, msg proto.Messa
|
||||
headState := r.chain.HeadState()
|
||||
|
||||
// Ignore block older than last finalized checkpoint.
|
||||
if block.Slot < helpers.StartSlot(headState.FinalizedCheckpoint.Epoch+1) {
|
||||
if block.Slot < helpers.StartSlot(headState.FinalizedCheckpoint.Epoch) {
|
||||
log.Debugf("Received a block that's older than finalized checkpoint, %d < %d",
|
||||
block.Slot, helpers.StartSlot(headState.FinalizedCheckpoint.Epoch))
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
50
beacon-chain/sync/subscriber_beacon_blocks_test.go
Normal file
50
beacon-chain/sync/subscriber_beacon_blocks_test.go
Normal file
@@ -0,0 +1,50 @@
|
||||
package sync
|
||||
|
||||
import (
|
||||
"context"
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/go-ssz"
|
||||
mock "github.com/prysmaticlabs/prysm/beacon-chain/blockchain/testing"
|
||||
dbtest "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
||||
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
||||
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
||||
"github.com/prysmaticlabs/prysm/shared/params"
|
||||
"github.com/prysmaticlabs/prysm/shared/testutil"
|
||||
"github.com/sirupsen/logrus"
|
||||
logTest "github.com/sirupsen/logrus/hooks/test"
|
||||
)
|
||||
|
||||
func init() {
|
||||
logrus.SetLevel(logrus.DebugLevel)
|
||||
}
|
||||
|
||||
func TestRegularSyncBeaconBlockSubscriber_FilterByFinalizedEpoch(t *testing.T) {
|
||||
hook := logTest.NewGlobal()
|
||||
db := dbtest.SetupDB(t)
|
||||
defer dbtest.TeardownDB(t, db)
|
||||
|
||||
s := &pb.BeaconState{FinalizedCheckpoint: ðpb.Checkpoint{Epoch: 1}}
|
||||
parent := ðpb.BeaconBlock{}
|
||||
if err := db.SaveBlock(context.Background(), parent); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
parentRoot, _ := ssz.SigningRoot(parent)
|
||||
r := &RegularSync{
|
||||
db: db,
|
||||
chain: &mock.ChainService{State: s},
|
||||
}
|
||||
|
||||
b := ðpb.BeaconBlock{Slot: 1, ParentRoot: parentRoot[:]}
|
||||
if err := r.beaconBlockSubscriber(context.Background(), b); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
testutil.AssertLogsContain(t, hook, "Received a block that's older than finalized checkpoint, 1 < 64")
|
||||
|
||||
hook.Reset()
|
||||
b.Slot = params.BeaconConfig().SlotsPerEpoch
|
||||
if err := r.beaconBlockSubscriber(context.Background(), b); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
testutil.AssertLogsDoNotContain(t, hook, "Received a block that's older than finalized checkpoint")
|
||||
}
|
||||
Reference in New Issue
Block a user