Skip to content
Merged
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 polygon/sync/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ func (s *Sync) applyNewBlockChainOnTip(ctx context.Context, blockChain []*types.
return err
}

if source == EventSourceP2PNewBlock {
if source == EventSourceP2PNewBlock || source == EventSourceP2PNewBlockHashes {
// https://github.com/ethereum/devp2p/blob/master/caps/eth.md#block-propagation
// devp2p spec: After the header validity check, the client imports the block into its local chain by executing
// all transactions contained in the block, computing the block's 'post state'. The block's state-root hash
Expand Down
Loading