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
6 changes: 4 additions & 2 deletions node/src/actors/session/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -807,8 +807,10 @@ fn check_beacon_compatibility(
}),
// current_checkpoint == received_checkpoint
Ordering::Equal => {
if current_beacon.highest_block_checkpoint.hash_prev_block
== received_beacon.highest_block_checkpoint.hash_prev_block
if current_beacon.highest_superblock_checkpoint.hash_prev_block
== received_beacon
.highest_superblock_checkpoint
.hash_prev_block
{
// Beacons are equal
Ok(())
Expand Down