Skip to content

Commit

Permalink
replace get_justification with create_justification
Browse files Browse the repository at this point in the history
  • Loading branch information
konnov committed Nov 27, 2024
1 parent aafa601 commit c9c699f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/informal-spec/replica.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ impl ReplicaState {
self.phase = Phase::Prepare;

// Send a new view message to the other replicas, for synchronization.
let new_view = NewView::new(self.get_justification(view));
let new_view = NewView::new(self.create_justification());

self.send(new_view);
}
Expand All @@ -260,4 +260,4 @@ impl ReplicaState {
Justification::Timeout(self.high_timeout_qc.unwrap())
}
}
}
}

0 comments on commit c9c699f

Please sign in to comment.