Skip to content
Merged
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
7 changes: 7 additions & 0 deletions consensus/src/marshal/core/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1042,6 +1042,10 @@ where
return;
}

// The pending floor owns the next application sync point. Drop any
// in-flight acks before they can advance the processed height past it.
self.pending_acks.clear();

debug!(?round, ?commitment, "starting fetch for floor block");
self.floor.await_anchor(finalization);
self.floor
Expand Down Expand Up @@ -1081,6 +1085,9 @@ where
);
}

// This anchor cannot move the application sync point, but its
// finalization round can still prune round-bound resolver work.
// Keep pending acks intact because processed_height is unchanged.
if height <= self.floor.processed_height() {
warn!(
%height,
Expand Down
Loading
Loading